Create waterfall with separated curve
6 次查看(过去 30 天)
显示 更早的评论
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!
采纳的回答
Star Strider
2023-6-15
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)])
.
0 个评论
更多回答(0 个)
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!