Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Slow Matlab 2014b Install on Yosemite
조회 수: 2 (최근 30일)
이전 댓글 표시
I am having ridiculously slow computing issues using Matlab 2014b on my Macbook Pro with the new 10.10.1 Mac OS X Yosemite install (specs: mid-2012 15in Macbook Pro, 2.3 GHz Intel Core I7, 4 GB 1600 MHz DDR3 RAM).
Here's a basic script I'm trying to run...
I have a 227x1040x1392 matrix of type double of some Calcium imaging data (227 slices). I want to normalize each slice by the max value to put into the range of 0 - 1, and am reshaping the matrix into 1040x1392x227.
for jj = 1:227
C(:,:,jj) = squeeze(A(jj,:,:)) / max(max(max(A(jj,:,:))));
end
Simple enough command. My only open applications are Matlab and the Activity Monitor. I am running at 91.9% CPU, Matlab itself is using 5.38GB of RAM. My physical memory is maxed out at 4GB and virtual memory is at 11.38GB.
Note:
I have already taken care of the issue presented here: http://www.mathworks.com/matlabcentral/answers/162403-matlab-getting-status-for-files-yosemite-problem
Has anyone run into similar slow computing issues for 2014b and Yosemite?
댓글 수: 0
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!