wjy21cn 发表于 2006-8-25 10:42

matlab中的工作空间默认为多大?

我是否可以在工作空间中开辟任意大的数组?

jieli 发表于 2006-8-25 16:00

好像不行,大概是1e7左右。

happy 发表于 2006-8-25 20:41

这个和你的可用物理内存成正比

jieli 发表于 2006-9-2 09:16

查了一下,下面是解答:
Matlab中能开的最大数组是由什么决定的?

I have had similar problems. Below is an explanation I received from
Ian Boyd
from Mathworks (just giving credit where credit is due) that explains
what's happening. You solution is to run matlab with the -nojvm mode.
"The heap memory system in JAVA consists of data and handle elements.
When you allocate a variable you get a handle and data. As long as
data has an associated handle, the JVM considers it valid and
will not clean it up.

However, when you call the clear function in MATLAB, all handles are
destroyed, and the data associated is now invalid. This means that
the JAVA engine can free up that data (garbage collection), but does
not mean that it will clean it up at that moment.

Calling the PACK command encourages JAVA to run the garbage collector
and de-fragment the memory. But it does not force it to (This is part
of the JAVA design). Even though the memory is 'freed' on the heap,
it is not actually free to the OS, it is only free to the JVM. Here
is one way to think of it:




MATLAB runs on JAVA (virtual machine), and Java runs on the OS
(physical machine). So when MATLAB is running in JAVA mode memory
allocations are requested from the JRE, not the OS.

One problem you may be running into is that the default maximum
JAVA heap size is relatively low ( <= 64 MB), so that is all the
memory one session of MATLAB will ever get on your system.

The good news is that you can increase this value. You will need
to create a java.opts file in $MATLAB/bin/$ARCH (or in the current
directory when you start MATLAB) and put the following command:

%%%BEGIN CODE%%%
maxHeapSize = 268435456
%%%END CODE%%%

This will give you 256MB of JVM memory and you can adjust the
parameter as needed.

Note: $MATLAB is the root directory and $ARCH is your system
architecture. This solution works on Windows as well as Solaris,
Linux,Alpha, and SGI. A similar operation is possible on IBM and
HPUX, but with a different syntax.

For the 1.1.8 JVM (Windows, Linux, Solaris, Alpha, SGI) our
defaults are:

minHeapSize = 16000000
maxHeapSize = 64000000

These are the structure field names in that correspond to
-ms and -mx, and the settings above are roughly 16MB and 64MB.
To investigate the Java heap a bit, ask via the following:
>> java.lang.Runtime.getRuntime.totalMemory
>> java.lang.Runtime.getRuntime.freeMemory

When the free memory hits zero, Java will double the heap size
(up to the maximum setting).

If you choose to run without Java, you will remove the overhead
of the middle man, but you will also lose some MATLAB functionality
(mostly graphics and the Editor). You will still have most
of the computational power though.

Without JAVA, memory management will come directly from the OS,
and a CLEAR operation will result in memory being freed back to
the OS.


当然,数组越大计算应该越慢,所以应该通过程序优化来避免这样的问题,从而提高效率。

qiuqia17 发表于 2006-9-2 10:31

工作空间中 我试过自己的 65535 就不行了 我的机子转不动了
页: [1]
查看完整版本: matlab中的工作空间默认为多大?