代码搜索:公差标注
找到约 582 项符合「公差标注」的源代码
代码结果 582
www.eeworm.com/read/308602/13699064
m e0603.m
x=0:pi/100:2*pi;y1=2*sin(2*x);y2=3*sin(3*x);
plot(x,y1,x,y2)%在同一个坐标系分别绘制二维图形
title('This is figure of the third example. '); %给图形加上标题
xlabel('x'); %给x轴加标注
ylabel('y');
legend('2*sin(2*x)' ,'3*
www.eeworm.com/read/303498/13814405
m e0603.m
x=0:pi/100:2*pi;y1=2*sin(2*x);y2=3*sin(3*x);
plot(x,y1,x,y2)%在同一个坐标系分别绘制二维图形
title('This is figure of the third example. '); %给图形加上标题
xlabel('x'); %给x轴加标注
ylabel('y');
legend('2*sin(2*x)' ,'3*
www.eeworm.com/read/157483/11699499
m 2-9.m
subplot(2,1,1)
[x,y] = meshgrid(-2:.2:2);
%为三维画图产生x和y矩阵
z = x.^exp(-x.^2-y.^2);
[C,h] = contour(x,y,z);
%等高线contour函数,在后面的轮廓线函数里讲解
clabel(C,h);
%标注等高线值
subplot(2,1,2)
x = -pi:pi/20:pi;
plot(
www.eeworm.com/read/345494/11812851
m ex1503.m
%例15-3 MATLAB数据统计工具应用
A=rand(20,3); %产生三列随机数据,每列20行
plot(A,'.') %在图像窗口以实心堤岸显示这些数据,如图15-2
legend('data1','data2','data3') %对三列数据添加标注
%例15-3(续) MATLAB数据统计工具应用
xstats
ystats
www.eeworm.com/read/257078/11951284
m e0603.m
x=0:pi/100:2*pi;y1=2*sin(2*x);y2=3*sin(3*x);
plot(x,y1,x,y2)%在同一个坐标系分别绘制二维图形
title('This is figure of the third example. '); %给图形加上标题
xlabel('x'); %给x轴加标注
ylabel('y');
legend('2*sin(2*x)' ,'3*
www.eeworm.com/read/152291/12123863
m 6-8.m
subplot(2,1,1)
[x,y] = meshgrid(-2:.2:2);
%为三维画图产生x和y矩阵
z = x.^exp(-x.^2-y.^2);
[C,h] = contour(x,y,z);
% 轮廓线contour函数,在后面的轮廓图函数里讲解
clabel(C,h);
%标注轮廓图线值
subplot(2,1,2)
x = -pi:pi/20:pi;
plo
www.eeworm.com/read/152288/12124228
m 3-39.m
tspan = [0 12];
y0 = [0 1 1];
% 在同一目录下,计算方程数值解。输入时间区间和初始条件
[t,Y] = ode45('rigid',tspan,y0);
% 采用ode45算法求解方程,options为默认值
plot(t,Y(:,1),'-',t,Y(:,2),'-.',t,Y(:,3),'.')
% 绘制计算结果并标注,如图3-14
legend('
www.eeworm.com/read/151751/12177318
m 6-24.m
X=[0 30 90 45 145 270 330 225 150];
Y=[5 9 3 10 6 3 2.6 8 7.4];
%以上定义向量,Y为向量长度
X=X*pi/180;
%角度转换成极坐标角度
[X Y]=pol2cart(X,Y);
%将极坐标转换成直角坐标系
compass(X,Y);
%绘制罗盘图
title '罗盘图示例'
%标注
www.eeworm.com/read/151751/12177475
m 2-9.m
subplot(2,1,1)
[x,y] = meshgrid(-2:.2:2);
%为三维画图产生x和y矩阵
z = x.^exp(-x.^2-y.^2);
[C,h] = contour(x,y,z);
%等高线contour函数,在后面的轮廓线函数里讲解
clabel(C,h);
%标注等高线值
subplot(2,1,2)
x = -pi:pi/20:pi;
plot(
www.eeworm.com/read/148879/12417722
m 6-24.m
X=[0 30 90 45 145 270 330 225 150];
Y=[5 9 3 10 6 3 2.6 8 7.4];
%以上定义向量,Y为向量长度
X=X*pi/180;
%角度转换成极坐标角度
[X Y]=pol2cart(X,Y);
%将极坐标转换成直角坐标系
compass(X,Y);
%绘制罗盘图
title '罗盘图示例'
%标注