I'm getting Not enough input arguments

1 visualización (últimos 30 días)
Gilbert Valentino
Gilbert Valentino el 5 de Nov. de 2020
Editada: madhan ravi el 5 de Nov. de 2020
function [val] = S_inf (V, theta)
k = 2;
val = 1./(1+exp(-(V-theta)./k));
end
x = S_inf(10, -44);

Respuestas (1)

madhan ravi
madhan ravi el 5 de Nov. de 2020
Your last line should be before the function
  1 comentario
madhan ravi
madhan ravi el 5 de Nov. de 2020
Editada: madhan ravi el 5 de Nov. de 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

Iniciar sesión para comentar.

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by