Plot 3D data in 2D as lines

9 visualizzazioni (ultimi 30 giorni)
carola forlini
carola forlini il 31 Mag 2023
Commentato: carola forlini il 6 Giu 2023
Hi,
I would like to plot my data as showed below. I tried using pcolor/contour with view(0, 90) but I am not able to plot just the lines.
Any suggestion?
Thank you

Risposte (1)

Cris LaPierre
Cris LaPierre il 31 Mag 2023
Plot your Z array using the plot command. Each column will be treated as a different series.
Share your data so we can be more specific.
[X,Y,Z] = peaks(25);
% as a surface
surf(X,Y,Z)
% as lines
figure
plot(Z)
  1 Commento
carola forlini
carola forlini il 6 Giu 2023
Thank you for the reply.
I solved the problem plotting each Z array in 2D simply adding an offset on the y-axis.

Accedi per commentare.

Categorie

Scopri di più su Line Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by