Create waterfall with separated curve

7 vues (au cours des 30 derniers jours)
gdz
gdz le 15 Juin 2023
Hi I would like to create a waterfall plot shown as above. I have the following data. Z = [556*8] (8 data of curve), X = [1*556], for the y, it should be appear as 1 to 8. How can I plot this figure with my data.
Thank you!
  1 commentaire
chicken vector
chicken vector le 15 Juin 2023
I can't see the figure.

Connectez-vous pour commenter.

Réponse acceptée

Star Strider
Star Strider le 15 Juin 2023
Perhaps something like this —
X = 0:555;
Y = 1:8;
Z = X(:)*Y*1E-2 + randn(numel(X),numel(Y));
figure
waterfall(X,Y,Z.')
xlabel('X')
ylabel('Y')
zlabel('Z')
yticks(Y)
ylim([min(Y) max(Y)])
NOTE — The ‘Z’ matrix needs to be transposed (the ' or .' operator or the transpose, .' function).
.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by