Number of matlab running
1 回表示 (過去 30 日間)
古いコメントを表示
Hello,
I am currently using matlab 2011b, and I have a lots of matlab functions to run with big running time (from 4/5 hours up to many days).
My problem is that i can only run 4 matlab at a given time (I don't use the gui, only the command line), and when i launch a fifth one, an other stop without warning.
So is there really a limit of 4 matlab running at the same time or I made some mistakes ?
If there is a limit, can we go beyond this limit ?
Sorry for my bad English.
Best regards,
Bruno
4 件のコメント
Walter Roberson
2013 年 7 月 3 日
How much memory is allocated to your virtual machine ? How much memory is each of your sessions taking?
採用された回答
Jan
2013 年 7 月 4 日
編集済み: Jan
2013 年 7 月 4 日
Sometimes out of memory messages cannot be written, because the require memory by itself. This rarely happens when a huge array is allocated, but usually when the memory is exhausted in many small pieces. Then finally there is even no memory to create the tiny string for the message anymore.
The standard solutions are:
- Install more RAM
- Use smaller data types if possible, e.g. integer types for indexing or single if the precision is enough
- Stop other applications
- Clear variables if they are not used anymore
- Avoid memory fragmentation caused by omitted pre-allocations
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!