第1章 MATLAB概述
% sin_x.m: This m-file calculates and plots the % function sin(x) for 0 <= x <= 6. x = 0:0.1:6; y = sin(x); plot(x,y);
MATLAB 7.X程序设计
16/33
第1章 MATLAB概述
% sin_x.m: This m-file calculates and plots the % function sin(x) for 0 <= x <= 6. x = 0:0.1:6; y = sin(x); plot(x,y);
MATLAB 7.X程序设计
16/33