using syssum for double summation
1 回表示 (過去 30 日間)
古いコメントを表示
I have to perform double summation ,i have attached a link for formula ,please tell how to process
0 件のコメント
採用された回答
Walter Roberson
2012 年 1 月 7 日
sum serves for simplifying symbolic sums (the discrete analog of integration). It should not be used for simply adding a finite number of terms: if a and b are integers of type DOM_INT, the call _plus(f $ i = a..b) gives the desired result, while sum(f, i = a..b) may return unevaluated. expand may be used to sum such an unevaluated finite sum. See example 3.
As your qir are known (arbitrary) numeric values rather than formula, you are encountering exactly the above case where symsum() should not be used.
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!