Out of memory problem in MATLAB 2017
1 次查看(过去 30 天)
显示 更早的评论
In general the .mat files are of 1 or 2 kb like that.
When I converted the Lat and Lon python ( numpy) files to .mat files. It goes upto around 459685kb.
So when i try to make a meshgrid of these. Matlab shows out of memory.
Is there any solution?
7 个评论
Rik
2022-2-7
You want to plot a map with 10848^4 pixels? That will end up with this size image:
%assuming 3*8 bit RGB
sz=3*10848^4;
fprintf('%d bytes\n',sz),fprintf('%.1f TB\n',sz/(1024^4))
Do you have that kind of hardware?
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Geographic Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!