Running a large array
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi,
I am trying to load in an array (the array is 362x332x75x1032 (34.7GB)), which exceeds maximum array size preference (16.0GB). How do i go about loading it in.
It is a variable which is part of a .nc dataset
댓글 수: 0
답변 (2개)
John D'Errico
2024년 7월 22일
편집: John D'Errico
2024년 7월 22일
Memory is cheap. Get more memory.
I'm sorry, but if you want to work with big data, you will often need sufficient capabilities to handle that data. No matter what, working with huge arrays, lacking sufficient will be slow. So your next question will be, how can I make my code run faster. Again ... get sufficient memory. Or, solve smaller problems.
댓글 수: 2
Walter Roberson
2024년 7월 22일
Did the professor assign the hardware and say "you must run it on this hardware" ?
If not, then:
- if it is your own hardware, then there is always the option of upgrading it
- if it is university hardware, then there is always negotiating with the university to obtain an upgrade
Voss
2024년 7월 22일
You can read and process the file in sections, one section at a time, in a loop, by specifying the start and count input arguments to ncread.
And/or specify the stride argument to read only every so many values instead of all of them.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 NetCDF에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!