Clear Filters
Clear Filters

How to store values as array

2 views (last 30 days)
James Crowe
James Crowe on 26 Oct 2017
Edited: per isakson on 26 Oct 2017
How do you store all k values as a single array?
for ii = nn
k = ((-1).^(ii-1)).*((xx^(2.*(ii-1))))./(factorial(2.*(ii-1)));
end

Accepted Answer

per isakson
per isakson on 26 Oct 2017
Edited: per isakson on 26 Oct 2017
There are a couple of mistakes in your code. Try this
k = nan( 1, nn ); % pre-alloctate memory
for ii = 1 : nn
k(ii) = ((-1).^(ii-1)).*((xx^(2.*(ii-1))))./(factorial(2.*(ii-1)));
end
assert( all(not(isnan(k))) )

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!