Pie Chart To be Plot in Specified Figure

Hi, I need to plot the pie chart in a specified figure, i used the following commands
Data = {'GFRP','CFRP','KFRP','GFRP','CFRP','KFRP','KFRP2','CFRP','GFRP'};
[mat_unique,index]=unique(Data,'first');
mat_ratio = countmember(mat_unique,Data);
Mat_graph_fig = figure();
mat_graph_3d = pie(mat_ratio);
GraphObject = findobj(mat_graph_3d,'Type','text');
oldStr = get(GraphObject,{'String'});
newStr = strcat(mat_unique,'(',(oldStr)',')');
%set(GraphObject,{'Parent'},Mat_graph_fig);
Matlab error: ??? Error using ==> set Invalid parameter/value pair arguments
Error in ==> Graph_Material at 17
set(GraphObject,{'Parent'},Mat_graph_fig);
can some body help
Thanks in advance

댓글 수: 1

Image Analyst
Image Analyst 2012년 7월 4일
I don't understand what you're trying to do with the last 4 lines. Didn't the pie() line do the plot? So what's all the gibberish after it for? Are you trying to set a title, or pie sector labels or something?

댓글을 달려면 로그인하십시오.

답변 (1개)

Walter Roberson
Walter Roberson 2012년 7월 4일

0 개 추천

I believe that when you specify a property list as a cell array, then you have to specify a cell array for the corresponding values. Try
set(GraphObject,'Parent',Mat_graph_fig);
Also, text objects cannot be parented to figures: text objects must be parented to an axes.

카테고리

도움말 센터File Exchange에서 Pie Charts에 대해 자세히 알아보기

태그

질문:

2012년 7월 4일

Community Treasure Hunt

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

Start Hunting!

Translated by