how to use symsum for this problem
4 ビュー (過去 30 日間)
古いコメントを表示
sym=symsum([i-Un]^2,i,1,s);
SD=(sym/n)^1/2;
0 件のコメント
回答 (1 件)
Torsten
2022 年 9 月 21 日
If you use symbolic variables, you should name them as such.
And you shouldn't name a variable "sym", especially if you do symbolic computations.
syms Un n i
symbolic_sum=symsum((i-Un)^2,i,1,n);
SD=simplify((symbolic_sum/n)^1/2)
2 件のコメント
Walter Roberson
2022 年 9 月 21 日
Caution, ^1/2 is not ^(1/2)
syms Un n i
symbolic_sum=symsum((i-Un)^2,i,1,n);
SD=simplify((symbolic_sum/n)^(1/2))
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!