matlab扩大内存的方法

使用Matlab生成很大的图片时,碰到了"out of memory"的错误,导致图片无法生成,于是不得不扩展虚拟内存。具体过程记录如下:

1)查看当前的虚拟内存

    在Matlab的命令行中,键入命令:feature ('memstats'),得到如下结果:

    Physical Memory (RAM):
        In Use:                             1499 MB (5dba0000)
        Free:                               1571 MB (6237e000)
        Total:                              3071 MB (bff1e000)
    Page File (Swap space):
        In Use:                             1694 MB (69e67000)
        Free:                               4446 MB (115e1e000)
        Total:                              6140 MB (17fc85000)
    Virtual Memory (Address Space):
        In Use:                              633 MB (279fe000)
        Free:                               1413 MB (585e2000)
        Total:                              2047 MB (7ffe0000)
    Largest Contiguous Free Blocks:
         1. [at 22cb0000]                   1239 MB (4d750000)
         2. [at 7da16000]                     28 MB 

你可能感兴趣的:(matlab)