How to plot 2D graphs (no function) over time into 3D?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hello,
I look for a way to plot 2D graphs (x,y) over time (z) into 3D structure. My problem is, that the 2D graph is not a function, so it's plotted by 100 values of x and y for each z value.
I tried several ways, for example the plot3() function including a loop, but then the vectors don't have the same length. And using surf() demands a function for z, but I have just a vector.
Thank you for your support, Dominik
0 Commenti
Risposte (1)
Walter Roberson
il 24 Set 2012
surf() never wants a function: surf works on a rectangular data array.
all_z = [z1(:), z2(:), z3(:)];
surf(x, y, all_z)
0 Commenti
Vedere anche
Categorie
Scopri di più su 2-D and 3-D 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!