Save n*Number of Pie Charts Generated from a loop

1 次查看(过去 30 天)
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().

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Pie Charts 的更多信息

产品


版本

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by