Matlab图形绘制经典案例
Matlab图形绘制经典案例1、 三维曲线>> t=0:pi/50:10*pi;>> plot3(sin(2*t),cos(2*t),t)>> axis square>> grid on INCLU
Matlab图形绘制经典案例