• 大小: 76KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-05
  • 语言: Matlab
  • 标签: matlab  

资源简介

matlab中画饼图命令、条形图命令、柱状图命令、及标注。横纵坐标显示

资源截图

代码片段和文件信息

%% question 1 What is the proportion of your network consumption to monthly consumption in the past year? 
data = [17 23 12 5];
label = {‘Less than 20%‘  ‘20%-50%‘ ‘50%-80%‘ ‘More than 80%‘};
explode=[0 0 1 1];%定义突出的部分
bili=data/sum(data);%计算比例
baifenbi=num2str(bili‘*100‘%1.2f‘);%计算百分比
baifenbi=[repmat(blanks(2)length(data)1)baifenbirepmat(‘%‘length(data)1)];
baifenbi=cellstr(baifenbi);
Label=strcat(labelbaifenbi‘);
pie(dataexplodeLabel)

%% question 2 What is your concept of consumption? 
figure;
data = [8 42 6 1];
label = {‘save every penny at the moment‘ ‘consumption in a planned way‘ ‘don‘‘ t care spend randomly‘ ‘others‘};
explode=[0 0 1 0];%定义突出的部分
bili=data/sum(data);%计算比例
baifenbi=num2str(bili‘*100‘%1.2f‘);%计算百分比
baifenbi=[repmat(blanks(2)length(data)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件     1721575  2018-04-09 16:50  1.tif
     文件     1721575  2018-04-09 17:05  2.tif
     文件      606845  2018-04-09 19:09  3.tif
     文件      348371  2018-04-09 19:19  4.tif
     文件      662411  2018-04-09 19:08  5.tif
     文件        2156  2018-04-09 19:14  dataPlot.m

评论

共有 条评论