此功能创建一个饼图。此函数确定与每个x值相对应的总饼图的百分比, 并绘制该大小的饼图。
【MATLAB函数Pie()】可选的数组爆炸控制单个饼图是否与饼图的其余部分分开。
句法
pie(x) // It draws a pie chart with the data in x.pie(x, explode) // It offsets a slice from the pie.explode is a vector or matrix of zeroes and non-zeroes corresponding to x.
例子
World population by continents.cont= char('Asia', 'Europe', 'Africa', ....'N.America', 'S.America');
pop=[3332;
696;
694;
437;
307];
pie(pop)for i=1:5, gtext (cont(i, :));
endTitle ('World Population (1992)', ....'fontsize', 18)
输出
文章图片
推荐阅读
- MATLAB函数stem()
- MATLAB函数area()
- MATLAB函数hist()
- MATLAB函数barh()
- MATLAB函数errorbar()
- MATLAB函数plotyy()
- MATLAB 函数fill()
- MATLAB函数Bar()
- MATLAB绘图操作详解