Effacer les filtres
Effacer les filtres

Plotting a specific interval for a given matrix

2 vues (au cours des 30 derniers jours)
Sergio
Sergio le 18 Jan 2024
Commenté : Sergio le 18 Jan 2024
Hi, I have a matrix with several entries on three rows, and I would like to plot the entries of the 2nd and 3d row values towards the 1st row. This is rather easy, and I do:
plot3(P(:,2),P(:,3),P(:,1));
wheree P is the matrix file. However, I would like to restrict the plot on the 1st row (P(:,1) on the interval [-1,1], the 2nd row on [-10,10] and the 3d on [-3Exp^(-16), 3Exp^(-16)]. I tried:
xlim auto; ylim auto; zlim auto
plot3(P(:,2),P(:,3), P(:,1))
or
xlim([-10 10]); ylim([-2.449293598294706e-16 2.449293598294706e-16]); zlim([-1 1])
plot3(P(:,2),P(:,3), P(:,1))
But the plot is not respecting the periods of the three axes.
How can I do that?
Thanks

Réponse acceptée

Fangjun Jiang
Fangjun Jiang le 18 Jan 2024
Déplacé(e) : Fangjun Jiang le 18 Jan 2024
Do you mean to apply xlim(), ylim() and zlim() on the plot?
  9 commentaires
Fangjun Jiang
Fangjun Jiang le 18 Jan 2024
Your P is 3x100, maybe you mean to do plot3(P(2,:),P(3,:), P(1,:))
Sergio
Sergio le 18 Jan 2024
A!!! Thanks Fangjun!!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Produits


Version

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by