代码搜索:动力学模型
找到约 5,890 项符合「动力学模型」的源代码
代码结果 5,890
www.eeworm.com/read/334860/12568349
m fitfun2.m
function y=fitfun2(c,x)
%曲线拟合例子模型函数
y=c(1)*exp(c(2)*x);
www.eeworm.com/read/104449/15692392
txt readme.txt
gamelib为一个基础类库,在各章节的演示代码中会用到相关的代码。
第八章
8.2.2 测试命令解析器
8.2.3 测试物件模型
www.eeworm.com/read/343634/11937565
asv zsos2.asv
%二次分式模型转换为传递函数模型——Sos2tf
%二次分式模型转换为零极点增益模型——Sos2zp
%二次分式模型转换为状态空间模型——Sos2ss
sos=[1 3 2 -2 0.5 1;-2 1 1 4 6 3;-3 -2 1 0.4 5 4;4 1 2 -2 -1 -3;1 -1 1 -1 -1 2];
[num,den]=sos2tf(sos)
[z,p,k]=sos2zp
www.eeworm.com/read/343634/11937978
m zsos2.m
%二次分式模型转换为传递函数模型——Sos2tf
%二次分式模型转换为零极点增益模型——Sos2zp
%二次分式模型转换为状态空间模型——Sos2ss
sos=[1 3 2 -2 0.5 1;-2 1 1 4 6 3;-3 -2 1 0.4 5 4;4 1 2 -2 -1 -3;1 -1 1 -1 -1 2];
[num,den]=sos2tf(sos)
[z,p,k]=sos2zp
www.eeworm.com/read/184067/9123466
m optfun2.m
function [f,g]=optfun2(x)
%非线性优化例用模型函数
f=-x(1)*x(2)*x(3);
g(1)=x(1)-x(2)-10;
g(2)=x(1)-2*x(2)-2*x(3);
g(3)=x(1)+2*x(2)+2*x(3)-72;
www.eeworm.com/read/184067/9123828
m quadeg3fun.m
function y=quadeg3fun(x)
%微积分例3模型函数
%quad8使用
y=exp(-x.^2);
www.eeworm.com/read/166306/10024292
m optfun2.m
function [f,g]=optfun2(x)
%非线性优化例用模型函数
f=-x(1)*x(2)*x(3);
g(1)=x(1)-x(2)-10;
g(2)=x(1)-2*x(2)-2*x(3);
g(3)=x(1)+2*x(2)+2*x(3)-72;
www.eeworm.com/read/166306/10024646
m quadeg3fun.m
function y=quadeg3fun(x)
%微积分例3模型函数
%quad8使用
y=exp(-x.^2);