代码搜索:2
找到约 10,000 项符合「2」的源代码
代码结果 10,000
www.eeworm.com/read/460712/7105753
m mo2ovr2.m
function mo2ovr2(flag)
% MO2OVR2 Mouse-implemented 2/2 element. (Utility Function)
% MO2OVR2 determines the 2/2 value to be added from various
% mouse motions within the IDEs.
%
www.eeworm.com/read/460712/7105909
m chap2_2adapt.m
function [sys,x0,str,ts]=para_estimate(t,x,u,flag)
switch flag,
case 0,
[sys,x0,str,ts]=mdlInitializeSizes;
case 1,
sys=mdlDerivatives(t,x,u);
case 3,
sys=mdlOutputs(t,x,u);
case {
www.eeworm.com/read/460712/7105911
m chap2_2ctrl.m
function [sys,x0,str,ts] = control_strategy(t,x,u,flag)
switch flag,
case 0,
[sys,x0,str,ts]=mdlInitializeSizes;
case 3,
sys=mdlOutputs(t,x,u);
case {2,4,9}
sys=[];
otherwise
www.eeworm.com/read/460712/7105913
m chap2_2ctrlnew.m
function [sys,x0,str,ts] = control_strategy(t,x,u,flag)
switch flag,
case 0,
[sys,x0,str,ts]=mdlInitializeSizes;
case 1,
sys=mdlDerivatives(t,x,u);
case 3,
sys=mdlOutputs(t,x,u);
c