how to represent the mathematical parameter in matlab?
1 回表示 (過去 30 日間)
古いコメントを表示
Here,
how to write the summation and its limits in matlab.
0 件のコメント
採用された回答
Wayne King
2012 年 9 月 28 日
編集済み: Wayne King
2012 年 9 月 28 日
Is this a question about a symbolic computation, or a numerical one?
x = randn(100,1);
% sum of x for elements 10 to 30
sum(x(20:30))
Symbolic
syms k
% sum of k from k =1 to k= 10
symsum(k,1,10)
その他の回答 (0 件)
参考
カテゴリ
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!