too many output arguments
1 次查看(过去 30 天)
显示 更早的评论
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)
回答(1 个)
Steven Lord
2021-4-5
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
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!