Info

This question is closed. Reopen it to edit or answer.

problem in preallocation

1 view (last 30 days)
huda nawaf
huda nawaf on 10 Nov 2011
Closed: MATLAB Answer Bot on 20 Aug 2021
hi, I used data with huge size, so I did preallocation A(147611,30977)=zeros But , I got this message: ??? Maximum variable size allowed by the program is exceeded.
what i have to do in this case?
thanks in advance

Answers (1)

Titus Edelhofer
Titus Edelhofer on 10 Nov 2011
Hi Huda,
before going on waht you can do other, you are aware, that a matrix of size 147611x30977 will need approx. 34GB of memory?
Titus
  6 Comments
huda nawaf
huda nawaf on 10 Nov 2011
in file there are integers and floating, but currently I read just integer.
I used just 1.92GB.
look please, in fact I convert that file into array
the structure of my file:
user id(integer) movie id(integer) rating(float)
in my file the id of users is frequent, so I try to place each user in row and draw his movie id and his rating .
So, the size of each row is different , and because i used preallocate i have to specify the size. I know the no. of rows but I don't know the no. of columns. So I give the largest(30977).
I'm on right or not?
please help me, I have in the same point since some days.
thanks
the array (147611*30977)
Walter Roberson
Walter Roberson on 10 Nov 2011
I do wonder whether the "social network"'s web site's Terms and Conditions allow this use of the data?
Anyhow, sounds to me like a good place to use cell arrays, or perhaps struct.

Community Treasure Hunt

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

Start Hunting!