Message 'No More Memory Available'
- To: mathgroup at smc.vnet.net
- Subject: [mg41064] Message 'No More Memory Available'
- From: "Toshiyuki \(Toshi\) Meshii" <meshii at mech.fukui-u.ac.jp>
- Date: Wed, 30 Apr 2003 04:25:29 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Hello,
I am working with a big list whose size is 100000x108x3 (i.e, 3D list.
"timestep" x "atom number" x "direction x, y or z").
This list file was made by C++ program and the format is a text type.
The validity of the format of the file was verified for data of 100000x54x3.
When I execute
time0=AbsoluteTime[];SetDirectory[directoryname];
vn= Take[
Get[filename<>"_v.m"]/v0,{nplotstart,nplotend}
];
n=Length[vn];
There is a error message
No more memory available.
Mathematica kernel has shut down.
Try quitting other applications and then retry.
Though I tried
<<Utilities`MemoryConserve`
as a countermeasure, it did not work.
Since the file size I am using is still small for my final goal, please give
me an advice to handle with larger lists.
My computing environment
-------------------------
Math version: 4.2 Windows
OS: Win XP Pro SP1
RAM: 1024 MB
HDD: 120 GB
CPU: P4, 2.8GHz
-------------------------
-Toshi