too many output arguments
Mostrar comentarios más antiguos
I am trying to integrate the following expression but MATLAB gives the error of too many output arguments. Kindly below, I have written the code. Thanks .
syms y;
k = 3;
fun = y^((1+1/k)-1)*(exp(-y));
e = int(fun,y,1,3)
3 comentarios
David Hill
el 5 de Abr. de 2021
Works fine for me.
aaliyan javaid
el 5 de Abr. de 2021
aaliyan javaid
el 5 de Abr. de 2021
Respuestas (1)
Steven Lord
el 5 de Abr. de 2021
You likely have a settings function that is taking precedence over the settings function. To confirm this, run the following command. If it lists a function you've written, please rename that function.
which -all settings
3 comentarios
aaliyan javaid
el 5 de Abr. de 2021
aaliyan javaid
el 5 de Abr. de 2021
Editada: aaliyan javaid
el 5 de Abr. de 2021
The - before all in that command is necessary.
which -all settings
Categorías
Más información sobre Symbolic Math Toolbox en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

