]> Creatis software - CreaPhase.git/blob - octave_packages/signal-1.1.3/freqs_plot.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / signal-1.1.3 / freqs_plot.m
1 ## Copyright (C) 2003 Julius O. Smith III <jos@ccrma.stanford.edu>
2 ##
3 ## This program is free software; you can redistribute it and/or modify it under
4 ## the terms of the GNU General Public License as published by the Free Software
5 ## Foundation; either version 3 of the License, or (at your option) any later
6 ## version.
7 ##
8 ## This program is distributed in the hope that it will be useful, but WITHOUT
9 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
11 ## details.
12 ##
13 ## You should have received a copy of the GNU General Public License along with
14 ## this program; if not, see <http://www.gnu.org/licenses/>.
15
16 ## -*- texinfo -*-
17 ## @deftypefn {Function File} freqs_plot (@var{w}, @var{h})
18 ## Plot the amplitude and phase of the vector @var{h}.
19 ##
20 ## @end deftypefn
21
22 function freqs_plot(w,h)
23     n = length(w);
24     mag = 20*log10(abs(h));
25     phase = unwrap(arg(h));
26     maxmag = max(mag);
27
28     subplot(211);
29     plot(w, mag, ";Magnitude (dB);");
30     title('Frequency response plot by freqs');
31     axis("labely");
32     ylabel("dB");
33     xlabel("");
34     grid("on");
35     if (maxmag - min(mag) > 100) % make 100 a parameter?
36       axis([w(1), w(n), maxmag-100, maxmag]);
37     else
38       axis("autoy");
39     endif
40
41     subplot(212);
42     plot(w, phase/(2*pi), ";Phase (radians/2pi);");
43     axis("label");
44     title("");
45     grid("on");
46     axis("autoy");
47     xlabel("Frequency (rad/sec)");
48     ylabel("Cycles");
49     axis([w(1), w(n)]);
50 endfunction