How can I plot with a different axe
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ach
le 14 Juin 2018
Commenté : Walter Roberson
le 14 Juin 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 ?
0 commentaires
Réponse acceptée
Plus de réponses (1)
Jeffrey Eymer
le 14 Juin 2018
1 commentaire
Walter Roberson
le 14 Juin 2018
Not in this case. The user was not passing in an x variable, so plot assumes 1 : size(A,1) should be used.
Voir également
Catégories
En savoir plus sur Line Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!