Making the Y-axis a scale of a specific variable

1 visualizzazione (ultimi 30 giorni)
How to change the scale of values of the y-axis to a scalar multiple of a specific variable? (i.e. I want to make all values that appear on the y-axis scale as scalar multiples of a varaible "r"). Thank you.

Risposta accettata

the cyclist
the cyclist il 5 Dic 2019
Here is one way:
r = 7;
m = 50;
N = 50;
x = rand(N,1);
y = m*rand(N,1);
figure
plot(x,y,'.');
set(gca,'YTick',0:r:max(y),'YTickLabel',0:r:max(y))
Screen Shot 2019-12-05 at 2.49.58 PM.png

Più risposte (0)

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by