- 积分
- 1931
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2012-4-6
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 haobang008 于 2016-7-11 08:25 编辑
原文链接:http://www.ilovematlab.cn/thread-202593-1-1.html方法稍微有些变动,请注意甄别哦
操作方法:
运行下面的代码:
x = [54 9 24 13];
explode = [4 2 2 2];
label = {' 维修时间',' 航行时间',' 等待时间',' 备件准备时间'}';
figure('color','w','renderer','openGL');
h = pie(x,explode);
h = findobj(h,'Type','text');
set(h,{'string'},strcat(get(h,{'string'}),label));
cm = [72 65 137;143 184 58;193 60 49;41 121 201]/255;
colormap(cm), shading interp
view(18,20), camproj perspective
light('Position',[1 1 7],'Style','inf')
lighting gouraud
效果图:
|
|