Frage

I want to plot a series of x and y coordinates with axes like those that are produced by wblplot. How can I achieve that? I can't use wblplot.

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

War es hilfreich?

Lösung

Use semilogx to scale X axis logarithmically or for usual plot change its property

set(gca, 'XScale', 'log');

Change ticks and grid line spacing

set(gca, 'YTick', vectorOfYvalues);
set(gca, 'YGrid', vectorOfYvalues);

More on axes properties in documentation.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top