Matlab的内存分配

%% Memory Allocation (Matlab的内存分配)
% Creating and Modifying Arrays
% When you assign a numeric or character array to a variable, 
% MATLAB allocates a contiguous virtual block of memory and stores the array data in that block.
% MATLAB also stores information about the array data, such as its class and dimensions, in a separate, 
% small block of memory called a header. 
% (有两部分,一部分内存分配给变量代表的数组的数据,另一部分储存有数组数据的信息(),例如:class and dimensions)
% Array Headers 对于大的数据集有用
 
% If you add new elements to an existing array, MATLAB expands the existing array in memory in a way that keeps its storage contiguous. 
% This usually requires finding a new block of memory large enough to hold the expanded array. 
% MATLAB then copies the contents of the array from its original location to this new block in memory,
% adds the new elements to the array in this block, and frees up the original array location in memory.
% If you are working with large data sets, you need to be careful when increasing the size of an array to avoid getting errors caused by insufficient memory
% 对于不是预先分配内存,临时添加一个元素,通常先得找一块大的内存(为了保证连续性),将值复制过去,再添加,然后释放掉原先的内存,这样的话很可能会出错

% If you remove elements from an existing array,
% MATLAB keeps the memory storage contiguous by removing the deleted elements, 
% and then compacting its storage in the original memory location.
% 删掉某个元素时,会在保证连续性的情况下,去除该元素,压缩对应内存

% b = a;只要不修改 b 那么 a b 共用一个地址,修改之后将 a 赋值给 b ,在修改 b 中的值
memory 
A = rand(5e7,1); % Store 400 MB array as A. Memory used = 381MB
% 内存增加 381 M
memory
B = A; % 内存不变
memory
B(1) = 3; % 内存增加 381 M
memory
%% Memory Management Functions
memory  % displays or returns information about how much memory is available and how much is used by MATLAB. 
whos % shows how much memory MATLAB has allocated for variables in the workspace.
pack  % saves existing variables to disk, and then reloads them contiguously. This reduces the chances of running into problems due to memory fragmentation.
clear % removes variables from memory. One way to increase the amount of available memory is to periodically clear variables from memory that you no longer need.
save % selectively stores variables to the disk. This is a useful technique when you are working with large amounts of data. Save data to the disk periodically, and then use the clear function to remove the saved data from memory.
load % reloads a data file saved with the save function.
quit % exits MATLAB and returns all allocated memory to the system. This can be useful on UNIX? systems, which do not free up memory allocated to an application (for example, MATLAB) until the application exits.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

nachifur

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值