如何将此MATLAB案例/开关转换为python代码? [重复]

时间:2022-10-30 15:50:12

This question already has an answer here:

这个问题在这里已有答案:

As part of a larger project, I'm trying to convert a MATLAB model to python, but there's a single part I'm having trouble figuring out:

作为一个更大的项目的一部分,我正在尝试将MATLAB模型转换为python,但是有一个部分我无法搞清楚:

f%% Parameters of the model: 1=K,R  2=Ca,T  3=KCa,H  4=Na
g(1)=26; g(2)=2.25; g(3)=9.5; g(4)=1;
E(1)=-.95; E(2)=1.20; E(3)=E(1); E(4)=.50;

%% Initial values
dt=.01; I_ext=0; V=-1; x=zeros(1,4);
tau(1)=dt./4.2; tau(2)=dt./14; tau(3)=dt./45; tau(4)=1;

%% Integration
t_rec=0;
% This is the loop I am confused about:
for t=-100:dt:200
    switch t;
        case 0; I_ext=1;
    end
% until here.    
    x0(1)=1.24  +  3.7*V + 3.2*V^2;
    x0(2)=4.205 + 11.6*V + 8  *V^2;
    x0(3)=3*x(2);
    x0(4)=17.8  + 47.6*V +33.8*V^2;

    x=x-tau.*(x-x0); %rem x(4)=x0(4) because tau(4)=1
    I=g.*x.*(V-E);
    V=V+dt*(I_ext-sum(I));

%and this loop:    
    if t>=0;
        t_rec=t_rec+1;
        x_plot(t_rec)=t;
        y_plot(t_rec)=V;
    end
end % time loop
%until here.

How would I python-ify this?

我怎么会这样python-ify?

1 个解决方案

#1


2  

A switch statement with only one case is called an if statement

只有一个case的switch语句称为if语句

if t == 0:
    I_ext = 1

#1


2  

A switch statement with only one case is called an if statement

只有一个case的switch语句称为if语句

if t == 0:
    I_ext = 1