1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
Nlevels_with_doppler_with_z_4wm
%% field propagation
z_1=z_1*100; % z in cm
t_1=t_1*1e6; % time now measured in uS
[Nv, Nt, Nz]=size(I2_out_1);
Npl=Nv/2+1;
Iv_out = reshape(I2_out_1(1:Npl,:,Nz),Npl,Nt);
for i=1:Npl
l_str{i}=num2str(v_1(i));
end
figure(1); hold off;
plot(Iv_out'); hold on
plot(I2_out_3(:,end), '-b', 'LineWidth',2);
l_str{Npl+1}=num2str('Doppler averaged out');
plot(I2_out_3(:,1), '-r', 'LineWidth',2);
l_str{Npl+2}=num2str('Doppler averaged in');
legend(l_str);
figure(2); hold off;
imagesc(z_3, t_3, I2_out_avgd_3)
|