How can I plot with a different axe

2 visualizzazioni (ultimi 30 giorni)
Ach
Ach il 14 Giu 2018
Commentato: Walter Roberson il 14 Giu 2018
Hi ,
I have the following code and I am trying to plot A . I get a plot with an x-axe from 1 to 40 .
s = linspace (-1,1,40);
A : 40x20x20 double %A matrix
plot(A(:,15,10))
How can I modify my code to get a plot with an x-achse from -1 to 1 ?

Risposta accettata

Walter Roberson
Walter Roberson il 14 Giu 2018
plot(s, A(:,15,10))

Più risposte (1)

Jeffrey Eymer
Jeffrey Eymer il 14 Giu 2018
You should be able to accomplish this using the xlim function.
  1 Commento
Walter Roberson
Walter Roberson il 14 Giu 2018
Not in this case. The user was not passing in an x variable, so plot assumes 1 : size(A,1) should be used.

Accedi per commentare.

Categorie

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

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by