Save n*Number of Pie Charts Generated from a loop

1 回表示 (過去 30 日間)
Waqar Ali Memon
Waqar Ali Memon 2019 年 7 月 18 日
コメント済み: Adam Danz 2019 年 7 月 18 日
Hello Everyone,
I am using following code to generate pie charts:
myDir = uigetdir;
for d = 1:length(Dataset)
baseFileName = (strcat('Figure', num2str(d),'.jpg'));
fullFileName = fullfile(myDir, baseFileName);
imwrite(p, fullFileName);
end
I am incurring following error:
Error using imwrite (line 420)
Expected DATA to be one of these types:
numeric, logical
Instead its type was matlab.graphics.primitive.Data.
Error in graphs (line 37)
imwrite(p, fullFileName);
Note: Except imwrite code, pie charts are generated.
Any help would be appreciated :-)
Regard,s
Waqar Ali Memon

採用された回答

Adam Danz
Adam Danz 2019 年 7 月 18 日
Explanation of the problem
The primary resource to go to with problems like these is the documentation which describes what the first input should be to imwrite().
That link shows that the first input should be a matrix of image data. It appears you're inputting the handle to a pie chart.
Solution
From your title I understand that you want to merely save the pie charts. Use saveas().
  2 件のコメント
Waqar Ali Memon
Waqar Ali Memon 2019 年 7 月 18 日
Thank you Adam Danz, saveas(). works :-).
Adam Danz
Adam Danz 2019 年 7 月 18 日
Glad I could help!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePie Charts についてさらに検索

製品


リリース

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by