I'm getting Not enough input arguments
Afficher commentaires plus anciens
function [val] = S_inf (V, theta)
k = 2;
val = 1./(1+exp(-(V-theta)./k));
end
x = S_inf(10, -44);
Réponses (1)
madhan ravi
le 5 Nov 2020
0 votes
Your last line should be before the function
1 commentaire
madhan ravi
le 5 Nov 2020
Modifié(e) : madhan ravi
le 5 Nov 2020
x = S_inf(10, -44);
function [val] = S_inf (V, theta) % saved in a separate file named S_inf.m if your using version prior to 2016b
k = 2;
val = 1./(1+exp(-(V-theta)./k));
end
Catégories
En savoir plus sur Modeling dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!