将数据从 MATLAB 结构体提取到变量
MATLAB 中是否可以以节省内存的方式传输数据?即是否可以在不将数组复制到内存中的情况下获得以下功能
a.b = zeros(1e4);
c = [a.b; ones(1e4)];
a = rmfield(a,'b');
Is it possible to transfer data in a memory saving way in MATLAB? I.e. is it possible to obtain the following functionality without having the array duplicated in memory
a.b = zeros(1e4);
c = [a.b; ones(1e4)];
a = rmfield(a,'b');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论