How to plot Z vs Y from a data matrix X,Y,Z as line plots for specific X values on separate figures?

1 次查看(过去 30 天)
I want to get X number of figures with Z vs Y plots.
for i=0:numel(X)
fig(i)=figure;
plot(Y,Z(X));
w = waitforbuttonpress;
close(fig(i))
end
Thanks!
  1 个评论
Image Analyst
Image Analyst 2022-9-17
Why is X the index to Z? How many elements are in X? If it's a thousand, surely you don't want a thousand separate figure windows.
If you have any more questions, then attach your data and code to read it in with the paperclip icon after you read this:

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating, Deleting, and Querying Graphics Objects 的更多信息

产品


版本

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by