pre-allocate
5 views (last 30 days)
Show older comments
hi, when I used x=zeros(211197)
I got product of dimension is greater than maximum integer. what I do? I used pre-allocate to avoid out of memory
thanks
1 Comment
Jan
on 22 Oct 2011
This has been answered in your former thread already: http://www.mathworks.com/matlabcentral/answers/17923-out-memory-problem
Please read the former answers carefully instead of trying to push me by email.
Answers (1)
bym
on 22 Oct 2011
you are creating a matrix [211197 x 211197]. do you want perhaps:
x= zeros(211197,1) % ?!
0 Comments
See Also
Categories
Find more on Resizing and Reshaping 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!