Hello,
I "putimage" offscreen to load 42 images each size of which is
rather big (1400X1400). I do it by looping the next commands:
for loop=1:42
figName = strcat('stFig', num2str(loop));
load (figName, 'zInputL')
windowOffLtemp =
Screen(screenNumberL,'OpenOffscreenWindow');
Screen(windowOffLtemp,'PutImage',incL*zInputL,[posHL1,posVL
1,posHL2,posVL2]);
end
Now when it reaches to 32 figures loaded offscreen, I get this
error message.
"??? ScreenPutImage.c: not enough Matlab (118 MB) or Temp
(280 MB) memory for new 1400 x 1400 x 32 bit offscreen window.
(You can use BYTES to check.)"
But I have to have these 42 figures of this size loaded before the
rest of the algorithm.
What can I do to increase the memory size? Or any other
solutions?
Matlab has 1Gb minimum, 1.2Gb maximum moemory allocated.
My machine is G4 desktop, 733MHz, 1.5Gb memroy installed.
If anyone know the solution, please let me know.
I "putimage" offscreen to load 42 images each size of which is
rather big (1400X1400). I do it by looping the next commands:
for loop=1:42
figName = strcat('stFig', num2str(loop));
load (figName, 'zInputL')
windowOffLtemp =
Screen(screenNumberL,'OpenOffscreenWindow');
Screen(windowOffLtemp,'PutImage',incL*zInputL,[posHL1,posVL
1,posHL2,posVL2]);
end
Now when it reaches to 32 figures loaded offscreen, I get this
error message.
"??? ScreenPutImage.c: not enough Matlab (118 MB) or Temp
(280 MB) memory for new 1400 x 1400 x 32 bit offscreen window.
(You can use BYTES to check.)"
But I have to have these 42 figures of this size loaded before the
rest of the algorithm.
What can I do to increase the memory size? Or any other
solutions?
Matlab has 1Gb minimum, 1.2Gb maximum moemory allocated.
My machine is G4 desktop, 733MHz, 1.5Gb memroy installed.
If anyone know the solution, please let me know.