比方说,我必须运行我的func.m
几个小时,让Matlab运行在服务器上(Windows)。 我希望function不要使用任务pipe理器指示的可用CPU,磁盘和/或内存的99%,可以说每个限制为75%。
我应该如何限制他们,保留Matlab的其他实例或其他进程没有任何问题?
你可以使用memory
功能做类似的事情,
% set threshold here mem_threshold = 75; while 1 % do stuff %% % check how much memory is being used [~ sys] = memory; mem_avail = sys.PhysicalMemory.Available; mem_total = sys.PhysicalMemory.Total; mem_used = 100*(mem_total-mem_avail)/mem_total; % break loop, if memory used exceeds threshold if mem_used > mem_threshold break; end end