フィルターのクリア

how to represent the mathematical parameter in matlab?

2 ビュー (過去 30 日間)
Dhines
Dhines 2012 年 9 月 28 日
Here,
how to write the summation and its limits in matlab.

採用された回答

Wayne King
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)
  1 件のコメント
Dhines
Dhines 2012 年 9 月 28 日
thanks for your kindful suggestion

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

タグ

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by