フィルターのクリア

How would I output this term as an array?

1 回表示 (過去 30 日間)
James Crowe
James Crowe 2017 年 10 月 27 日
編集済み: KSSV 2017 年 10 月 27 日
Hi, how would I output the iiTerm as an array, simply putting iiTerm after the loop and within the loop returns a singe value. Thank you.
for ii = 0:1:10
iiTerm = ((-1).^(ii)).*(((pi/4).^(2.*ii)))./(factorial(2.*ii));
sum2 = sum2 + iiTerm;
sum2
end

採用された回答

KSSV
KSSV 2017 年 10 月 27 日
編集済み: KSSV 2017 年 10 月 27 日
iiTerm = zeros(10,1) ;
for ii = 1:10
iiTerm(ii) = ((-1).^(ii)).*(((pi/4).^(2.*ii)))./(factorial(2.*ii)) ;
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by