summaryrefslogtreecommitdiff
path: root/gr-radar/src/lib/plot_xambi.m
blob: 62088597bfbfda7caf85e653ca69314295ba726c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function plot_xambi(amb)
  [nr, nc] = size(amb);
  ndoppler_bins = nr
  nranges = nc

  %colormap(cool(256));
  %colormap(rainbow(256));
  colormap(gray(1024));

  %d = 10*log10(amb);
  d = amb;
  min(min(d))
  max(max(d))
  imagesc(d, 4.0);
endfunction;