matlab基础知识

小垃圾我练习的记录

function [ t ] = untitled2
%UNTITLED2 此处显示有关此函数的摘要
%   此处显示详细说明
%y=ezplot('3*x^3-2*x^2+x-1',[-2,2])  %有区间函数的绘制

%y=ezplot('3*x^2-2*x^2+x-1',[-2,2,-2,2])%x在[xmin,xmax],y在[ymin,ymax]

%theta = 0:0.1:2*pi;
%polar (theta,cos(2*theta))%绘制p=cos(2x)

%绘制三维图形
%t=0:0.1:10*pi;
%x=sin(t);
%y=cos(t);
%plot3(x,y,t,'')


%三维曲面的绘制z=x^2-y^2
%x=-10:0.5:10;
%y=-10:0.5:10;
%[xx,yy]=meshgrid(x,y);
%z=xx.^2-yy.^2;
%mesh(xx,yy,z);


%grid on;%增加网格
%grid off;%删除网格

%坐标轴与图像名
%xlabel('具体名称');
%ylabel('具体名称');
%zlabel('具体名称');
%title('具体名称');

%图形中增加修饰
%gtext('string');

%子图的绘制
%subplot(rows,cols,rank);
%该命令将图片分割为row行,cols列的分块,并在rank位置作图

%子图的绘制
%t=0:0.1:2*pi;
%x=cos(t);
%y=sin(t);
%subplot(2,1,1);plot(t,x,'g');
%subplot(2,1,2);plot(t,y,'k');

end

 

你可能感兴趣的:(Matlab,matlab)