Commit 6a58f308 authored by Franco Buffa's avatar Franco Buffa
Browse files

source and data

parent 8e758b4c
Loading
Loading
Loading
Loading

dev/.directory

0 → 100644
+3 −0
Original line number Diff line number Diff line
[Dolphin]
Timestamp=2017,7,17,12,18,31
Version=3

dev/ampl.m

0 → 100644
+16 −0
Original line number Diff line number Diff line
function ampl(tol1)
 if(nargin<1)
  tol1=-30;
 end
 load phase.dat
 f0=f;
 mx=max(max(f0));
 f0=f0/mx;
 f0=20*log10(f0);
 imagesc(f0);
 axis('square');
 colorbar;
 grid minor on;
 colormap('jet');
 caxis([tol1 0]);
end
 No newline at end of file
Loading