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)
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
3 件のコメント
Steven Lord
2021 年 4 月 5 日
The - before all in that command is necessary.
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!