How to store values as array
    7 views (last 30 days)
  
       Show older comments
    
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
0 Comments
Accepted Answer
  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))) )
0 Comments
More Answers (0)
See Also
Categories
				Find more on Creating and Concatenating Matrices 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!
