代码搜索:M
找到约 10,000 项符合「M」的源代码
代码结果 10,000
www.eeworm.com/read/486900/6519741
m m6_28_2.m
A2=[1 3 2;0 2 0;0 1 2];
B2=[2 1;1 1;-1 -1];
Co2=ctrb(A2,B2)
r=rank(Co2)
www.eeworm.com/read/486900/6519743
m m6_30_1.m
A1=[1 0;-1 2];
C=[0 1];
A1=[1 0;-1 2];
C1=[0 1];
Ob1=obsv(A1,C1)
r=rank(Ob1)
www.eeworm.com/read/486900/6519744
m m6_6_2.m
G=tf([5,5],[1,4,2,3,0]);
t=[0:0.1:150]';
u=cos(t+pi/6);
lsim(G,u,t) ;
title('余弦信号输出响应曲线');
xlabel('t');
ylabel('cos(t+pi/6)');
grid
www.eeworm.com/read/486900/6519748
m m6_9_2.m
wn=[0.1:0.1:1];
z=0.55;
t=0:0.1:12;
hold on
for i=1:length(wn)
Gc=tf(wn(i)^2,[1,2*z*wn(i),wn(i)^2]);
step(Gc,t)
end
hold off
title('阶跃响应曲线');
grid
www.eeworm.com/read/486900/6519752
m m6_28_3.m
A3=[-2 1 0;0 -2 0;0 0 -3];
B3=[1 2;0 0;3 0];
Co3=ctrb(A3,B3)
r=rank(Co3)
www.eeworm.com/read/486139/6543866
m m_vec2mat.m
function [M]=m_vec2mat(V,n_l, n_c)
for i=1:n_c,
for j=1:n_l,
M(i,j)=V((i-1)*n_c+j);
end
end
www.eeworm.com/read/485902/6548992
m ar_m_al1.m
%Fast LMS-Newton algorithm when applied to the modeling of an
%unknown plant: Algorithm 1, Table 11.6.
%
%
% Lattice structures are used to implement the backward filter
% in the AR modeling
www.eeworm.com/read/485902/6549010
m ar_m_al2.m
%Fast LMS-Newton algorithm when applied to the modeling of an
%unknown plant: Algorithm 2, Table 11.7.
%
%
% Lattice structures are used to implement the forward
% and backward filters in th
www.eeworm.com/read/480027/6675114
m m_geo2mag.m
function [longMAG,latMAG,phiVecMAG,thetaVecMAG]=m_geo2mag(longGEO,latGEO,phiVecGEO,thetaVecGEO)
% M_GEO2MAG Converts geographic to geomagnetic coordinates.
% [longMAG,latMAG]=M_GEO2MAG(longGEO,latG
www.eeworm.com/read/480027/6675119
m m_tba2b.m
function m_tba2b(fnam);
% M_TBA2B Converts the ASCII TerrainBase 5-minute bathymetry database
% (size 56Mb) available from
% ftp://ncardata.ucar.edu/datasets/ds759.2/tbase.Z
%