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