- fixed getRefTime.m

- fixed getRefGain.m
- minor changes to RX/TX

git-svn-id: http://moon:8086/svn/matlab/trunk@43 801c6759-fa7c-4059-a304-17956f83a07c
This commit is contained in:
2015-04-29 21:25:46 +00:00
parent dd733db287
commit 584d16e3bf
4 changed files with 25 additions and 25 deletions
+2 -2
View File
@@ -259,9 +259,9 @@ for k=start:length(Z_)
sym_out(:, kk) = ZZ ./ H;
if 1
subplot(2, 1, 1)
plot(abs(H)); grid; title('abs(H)');
plot(0:length(H)-1, abs(H)); grid; title('abs(H)'); axis([0 length(H)-1 0 15+0*max(abs(H))]);
subplot(2, 1, 2)
plot(angle(H)); grid; title('phi(H)');
plot(0:length(H)-1, angle(H)); grid; title('phi(H)'); axis([0 length(H)-1 -4 4]);
else
hold on;
plot(sym_out(:, kk), '+');