Parameters 基于Scilab的Lotka-Volterra模型参数估计

Parameters 基于Scilab的Lotka-Volterra模型参数估计,parameters,estimation,least-squares,scilab,Parameters,Estimation,Least Squares,Scilab,我正试图用Scilab对Lotka-Volterra模型进行参数估计(我完全是新手)。当我尝试运行脚本时,Scilab会警告不连贯的减法。我想我的问题与中的相同,但解决方案使用了Matlab函数 这是我的剧本: // 1. Create Lotka Volterra function function [dY]=LotkaVolterra(t,X,c,n,m,e) IngestC = c * X(1) * X(2) GrowthP = n * X(1) MortC =

我正试图用Scilab对Lotka-Volterra模型进行参数估计(我完全是新手)。当我尝试运行脚本时,Scilab会警告不连贯的减法。我想我的问题与中的相同,但解决方案使用了Matlab函数

这是我的剧本:

// 1. Create Lotka Volterra function

function [dY]=LotkaVolterra(t,X,c,n,m,e)
    IngestC = c * X(1) * X(2)
    GrowthP = n * X(1)
    MortC = m * X(2)
    dY(1) = GrowthP - IngestC
    dY(2) = IngestC * e - MortC
endfunction

// 2. Define the Nonlinear Least Squares functions

function f = Differences ( x ) 
    // Returns the difference between the simulated differential 
    // equation and the experimental data.
    c = x(1) ;n = x(2);m = x(3);e = x(4);y0 = y_exp(1,:);t0 = 0
    y_calc=ode(y0',t0,t,list(LotkaVolterra,c,n,m,e)) 
    diffmat = y_calc' - y_exp
    f = diffmat(:)
endfunction 

function val = L_Squares ( x ) 
    // Computes the sum of squares of the differences.
    f = Differences ( x ) 
    val = sum(f.^2)
endfunction 

// Experimental data 
t = [0:19]'; 
H=[20,20,20,12,28,58,75,75,88,61,75,88,69,32,13,21,30,2,153,148];
L=[30,45,49,40,21,8,6,5,10,20,33,34,30,21,14,8,4,4,14,38];
y_exp=[H',L'];


// compute the model cost function
function [f, g, ind] = modelCost (x, ind)
    f = L_Squares ( x )
    g = derivative ( L_Squares , x )
endfunction

// use of optim function with loops to avoid local minimum 
tic
i=0
fitminx=zeros(4,100);
fitminy=zeros(1,100);
for c=[0:0.1:1]
    for n=[0:0.1:1]
        for m=[0:0.1:1]
            for e=[0:0.1:1]
                i=i+1
                x0 = [c;n;m;e]
                [ fopt , xopt , gopt ] = optim ( modelCost , x0 )
                fitminx(:,i)=xopt;
                fitminy(:,i)=fopt;
            end
        end
    end 
end
[a,b]=min(fitminy)
fitminx(:,a)
toc
错误消息是:

lsoda--  at t (=r1), mxstep (=i1) steps   
needed before reaching tout
      where i1 is :        500                                                  
      where r1 is :   0.4145715729197D+01                                       
Attention : Le résultat est peut être inexact.

 !--error 9 
Soustraction incohérente.
at line       4 of function Differences called by :  
at line       2 of function L_Squares called by :  
at line      16 of function %R_ called by :  
at line      15 of function %deriv1_ called by :  
at line      58 of function derivative called by :  
at line       3 of function modelCost called by :  
                [ fopt , xopt , gopt ] = optim ( modelCost , x0 )
谢谢你对我的问题的兴趣和时间(对我的英语也很抱歉)

问题已经解决了

diffmat = y_calc' - y_exp
添加以下代码:

disp( "Y_calc dimensions:");
disp( size(y_calc'));

disp( "y_exp dimensions:");
disp( size(y_exp));    
发现:

Y_calc dimensions:    
91.    2.  

y_exp dimensions:    
20.    2.  
我对预期的行为和预期的矩阵大小一无所知,但这至少是错误的根本原因

我的答案的副本

问题是解算器不知何故到达了一个点,即它无法在每个
t
上解算ode,并在某个点停止。因此,您的
y\u计算
的大小小于
y\u exp

如果这不是您的问题,只需将
Differences
函数第6行的
diffmat
更改为

diffmat = y_calc' - y_exp(1:size(y_calc',1),:)

您的问题是,在优化过程中,
c,n,m,e
参数得到负值。只需在
optim
调用中添加约束,如下所示:

[fopt, xopt, gopt] = optim(modelCost, 'b', zeros(4,1), %inf*ones(4,1), x0)

请复制准确的错误消息。即使它是用法语写的,也比仅仅描述它要好。很抱歉,我在重写代码时犯了一个错误:t=[0:19]”。我在题目里改了。无论如何谢谢你