代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/479544/6688297
m tiaoxiangxinhao.m
clear
echo on
t0=0.25;
tz=0.0005;
fc=200;
kf=50;
fz=1/tz;
t=[0:tz:t0];
df=0.25;
%定义信号序列
m=zeros(1,501);
for i=1:1:125
m(i)=i;
end
for i=126:1:375
m(i)=m(125)-i+125;
end
for i=
www.eeworm.com/read/479074/6698988
m contents.m
% ----------------------------------
% --- SkyLab: Skyplot for MatLab ---
% ----------------------------------
%
% Version 2.0, last update: 12-OCT-2000
% Maintainers: Peter Joosten (Email: P.Joosten@
www.eeworm.com/read/479129/6699531
m kf.m
% This is a test program to try out an 11-state
% GPS aided INS Kalman filter. The estimated states
% are the XYZ (NED) positions in local nav frame. The
% body velocites u, v, w. The body attitud
www.eeworm.com/read/479129/6699561
m kf11.m
% This is a test program to try out an 11-state
% GPS aided INS Kalman filter. The estimated states
% are the XYZ (NED) positions in local nav frame. The
% body velocites u, v, w. The body attitud
www.eeworm.com/read/479129/6699570
asv kf.asv
% This is a test program to try out an 11-state
% GPS aided INS Kalman filter. The estimated states
% are the XYZ (NED) positions in local nav frame. The
% body velocites u, v, w. The body attitud
www.eeworm.com/read/478563/6709959
m plotline.m
% ATLAST65中的绘制直线方程子程序plotline
%
function plotline(a,b,c,s)
% PLOTLINE(a,b,c,s) plots the line ax + by = c
% with axis set to [-s,s,-s,s].
% If the last input arguments is omitted, its
% default
www.eeworm.com/read/478563/6709990
m ea352.m
% 《工程线性代数(MATLAB版)》第三章例题3.5.2程序ea352
%
plot([0,3,4,2,0],[1,5,3,0,1]),hold on
line([3,2],[5,0])
set(gcf,'color','w')
www.eeworm.com/read/478650/6712561
m ex0223.m
%对多项式进行曲线拟合和插值
x1=1:10
p=[2 -1 5 10];
y0=polyval(p,x1)
p1=polyfit(x1,y0,1) %一阶拟合
p2=polyfit(x1,y0,2) %二阶拟合
p3=polyfit(x1,y0,3) %三阶拟合
y1=polyval(p1,x1)
y2=polyval(p2,x1)
y3=polyval(p3,x1
www.eeworm.com/read/478650/6712578
m ex0409.m
%在两个子图中使用坐标轴、分格线和坐标框控制
x=0:0.1:2*pi;
subplot(2,1,1)
plot(sin(x),cos(x))
axis equal %纵、横轴采用等长刻度
grid on %加分格线
%box on %加坐标框
subplot(2,1,2)
plot(x,exp(-x))
axis([0,3,0,2])
www.eeworm.com/read/478650/6712619
m ex0408.m
%用不同线段类型、颜色和数据点形画曲线
x=0:0.1:2*pi;
plot(x,sin(x),'r-.') %用红色点划线画出曲线
hold on
plot(x,cos(x),'b:o') %用蓝色圆圈画出曲线,用点线连接