How would I output this term as an array?

1 次查看(过去 30 天)
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 CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by