plot - Axes like wblplot when plotting X and Y in Matlab -
i want plot series of x , y coordinates axes produced wblplot. how can achieve that? can't use wblplot.
use semilogx scale x axis logarithmically or usual plot change property
set(gca, 'xscale', 'log');
change ticks , grid line spacing
set(gca, 'ytick', vectorofyvalues); set(gca, 'ygrid', vectorofyvalues);
more on axes properties in documentation.
Comments
Post a Comment