Filter löschen
Filter löschen

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

17 Ansichten (letzte 30 Tage)
Jasnoor Singh
Jasnoor Singh am 24 Jun. 2016
Kommentiert: Torsten am 24 Jun. 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?

Akzeptierte Antwort

Torsten
Torsten am 24 Jun. 2016
[X,Y] = meshgrid(1:50,1:50);
Z=3*ones(length(Y),length(X));
surf(X,Y,Z);
Best wishes
Torsten.
  7 Kommentare
Tien Tran
Tien Tran am 24 Jun. 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 am 24 Jun. 2016
https://www.mathworks.com/matlabcentral/fileexchange/5105-making-surface-plots-from-scatter-data
Best wishes
Torsten.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by