Plot 4d Using meshgrid
12 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Leonardo Barbosa Torres dos Santos
am 18 Okt. 2019
Kommentiert: alok dhaundiyal
am 18 Nov. 2020
Dear, could someone help me please?
I have a file with 4 column.
I would like plot a graphic 4D, where the axis x, y and z are the column from 1 to 3, respectively, and the color code is the column 4.
I built a graphic, is attached, but I would like make a surface. I read it is possible using mesh comand. But I could not.
Thank you advanced
0 Kommentare
Antworten (2)
Soham Chakraborty
am 21 Okt. 2019
Hi,
As per my understanding you are able to create a 3-D plot. However, you need guidance in representating an additional column of data using color codes. The above requirement can be sovled using 'mesh' or 'surf' command (for creating mesh or surface plot).
The following example could help you with your requirement:
[X,Y] = meshgrid(-8:.5:8);
Z = sin(X) + cos(Y);
C = X.*Y;
mesh(X,Y,Z,C);
or
[X,Y] = meshgrid(-8:.5:8);
Z = sin(X) + cos(Y);
C = X.*Y;
surf(X,Y,Z,C);
Leonardo Barbosa Torres dos Santos
am 21 Okt. 2019
Bearbeitet: Leonardo Barbosa Torres dos Santos
am 24 Okt. 2019
0 Kommentare
Siehe auch
Kategorien
Mehr zu Surface and Mesh Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!