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.

http://www.mathworks.se/help/stats/wblplot.html

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

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -