Why does this showing inf?
9 ビュー (過去 30 日間)
古いコメントを表示
Hi guys,
I appreciate it if some one can tell me what's the problem with my code that shows inf?
n=linspace(1,10^9,10);
y=exp(1);
e=(1+(1\n)).^n;
error=abs(y)-abs(e)/abs(y)
0 件のコメント
採用された回答
Walter Roberson
2017 年 9 月 20 日
Look at the value of 1\n .
Are you certain that you intended to use Matrix Left Divide rather than ./ ?
3 件のコメント
Walter Roberson
2017 年 9 月 20 日
/ is Matrix Right Divide. You want Right Divide which is ./
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!