blob: 7f334d58fce5755d413e48a96c14718e6e36c9bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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);
Iv_out = reshape(I2_out_1(1:Nv/2,:,Nz),Nv/2,Nt);
for i=1:Nv/2
l_str{i}=num2str(v_1(i));
end
l_str{Nv/2+1}=num2str('Doppler averaged');
figure(1); hold off;
plot(Iv_out'); hold on
plot(I2_out_avgd_3(:,end), 'LineWidth',2);
legend(l_str);
figure(2); hold off;
imagesc(z_3, t_3, I2_out_avgd_3)
|