File: semilogy.m

package info (click to toggle)
octplot 0.4.0-7
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 3,072 kB
  • ctags: 1,563
  • sloc: cpp: 8,133; ansic: 5,053; sh: 617; makefile: 161
file content (7 lines) | stat: -rw-r--r-- 132 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
function h = semilogy(varargin)

  h=plot(varargin{:});
  set(gca(),"xscale","linear");  
  set(gca(),"yscale","log");

endfunction