New to MATLAB here, can anyone tell me why when I try to run this it shows an error saying "Not Enough Input arguments"?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Karthik Agnihotri
el 4 de Abr. de 2020
Respondida: Florian Floh
el 4 de Abr. de 2020
I_desired=1.15
[t1]=current(I_desired)
function [t1]=current(I_desired)
I=@(t) (I_desired)-(9*exp.^(-t).*sin(2*pi.*t))
t1=fzero(I,0.5)
end
0 comentarios
Respuesta aceptada
Florian Floh
el 4 de Abr. de 2020
I_desired=1.15;
t1=current(I_desired)
function [t1]=current(I_desired)
% it is exp(), NOT exp.^()
I=@(t) (I_desired)-(9*exp(-t).*sin(2*pi.*t));
t1=fzero(I,0.5)
end
If I use exp() instead of exp.^() I get an output. I hope this helps ;)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Startup and Shutdown 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!