Effacer les filtres
Effacer les filtres

How can I plot a constant Z value with varying X and Y ?

17 vues (au cours des 30 derniers jours)
Jasnoor Singh
Jasnoor Singh le 24 Juin 2016
Commenté : Torsten le 24 Juin 2016
I want to plot a value of Z=3 for X=1:50 and Y=1:50 so that I can get a plane surface plot. Any suggestions please?

Réponse acceptée

Torsten
Torsten le 24 Juin 2016
[X,Y] = meshgrid(1:50,1:50);
Z=3*ones(length(Y),length(X));
surf(X,Y,Z);
Best wishes
Torsten.
  7 commentaires
Tien Tran
Tien Tran le 24 Juin 2016
I understand that, but Z is obtained from experimental data, it is not a function of x and y. Can I plot it?
Torsten
Torsten le 24 Juin 2016
https://www.mathworks.com/matlabcentral/fileexchange/5105-making-surface-plots-from-scatter-data
Best wishes
Torsten.

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by