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
0 个评论
采纳的回答
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 Center 和 File Exchange 中查找有关 Printing and Saving 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!