代码搜索:M
找到约 10,000 项符合「M」的源代码
代码结果 10,000
www.eeworm.com/read/342008/12047044
m or.m
function c = or(a,b)
if isa(a,'dataset') & ~isa(b,'dataset')
c = a.d | b;
elseif ~isa(a,'dataset') & isa(b,'dataset')
c = a | b.d;
else
c = a.d | b.d;
end
return
www.eeworm.com/read/342008/12047213
m and.m
function c = and(a,b)
if isa(a,'dataset') & ~isa(b,'dataset')
c = a.d & b;
elseif ~isa(a,'dataset') & isa(b,'dataset')
c = a & b.d;
else
c = a.d & b.d;
end
return
www.eeworm.com/read/151940/12160098
m 画线.m
x=linspace(1,47,47);
plot(x,most,'r',x,mea,'b');
xlabel('ssda曲面列向量序号');
ylabel('相似度');
title('锥模板与锥图象相似度随曲面横向变化曲线');
legend('最大值曲线','平均值曲线')
www.eeworm.com/read/339883/12198569
m lregulationnew].m
function [sys,x0]=lregulation(t,x,u,flag)
global ke kec ku n s uu;
s=0;
if flag==0
sys=[0;0;3;3;0;1]
x0=[]
n=0
ke=1
kec=1
ku=1
uu=[]
% u(2)
elseif flag==3
u(2)
n=n+1
uu(n)=n
t
www.eeworm.com/read/151561/12201065
m a.m
t1=0:0.4:2*pi;
t2=0:0.1:7;
plot(t1,sin(t1),':ob',t2,cos(t2),'--g')