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

matlab例程

开发平台:

Matlab

  1. % sin_x.m: This m-file calculates and plots the 
  2. % function sin(x) for 0 <= x <= 6.
  3. x = 0:0.1:6;
  4. y = sin(x);
  5. plot(x,y);