% SEMILOGY SEMILOGY Semilog Y Axis Plot Function % % Usage % % This command has the exact same syntax as the plot command: % % semilogy(,{linespec 1},,{linespec 2}...,properties...) % % in fact, it is a simple wrapper around plot that sets the % y axis to have a logarithmic scale. function ohandle = semilogy(varargin) handle = plot(varargin{:}); set(gca,'yscale','log'); if (nargout > 0) ohandle = handle; end