bar_plot.m
上传用户:zjhyt3
上传日期:2007-07-03
资源大小:89k
文件大小:0k
源码类别:

matlab例程

开发平台:

Matlab

  1. x = [ 1 2 3 4 5 6];
  2. y = [ 2 6 8 7 8 5];
  3. bar(x,y);
  4. title('bfExample of a Bar Plot');
  5. xlabel('bfitx');
  6. ylabel('bfity');
  7. axis([0 7 0 10]);