将大型矩阵保存到mat文件的问题 [英] issues of saving a large scale matrix to mat file

查看:102
本文介绍了将大型矩阵保存到mat文件的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图将矩阵保存到mat文件中,但是Matlab返回以下消息:

I was trying to save a matrix into a mat file, but the Matlab returns the following messages:

警告:变量"listmatrix"无法保存到版本低于7.3的MAT文件中. 要保存此变量,请使用-v7.3开关. 正在跳过...

Warning: Variable 'listmatrix' cannot be saved to a MAT-file whose version is older than 7.3. To save this variable, use the -v7.3 switch. Skipping...

使用-v7.3开关"是什么意思?

What does it mean for "use the -v7.3 switch"?

我应该使用

save testresult.mat -v7.3 listmatrix

还是其他?

推荐答案

一个快速的Google搜索说是.试试

A quick google search says yes. Try

save -v7.3 testresult.mat listmatrix

您的物体有多大? (执行whos listmatrix) 您可以使用其他数据类型(例如uint8)来节省内存.

How big is your object? (Do whos listmatrix) You could potentially save memory by using different data type such as uint8.

  • http://www.mathworks.ch/matlabcentral/newsreader/view_thread/243327
  • http://www.mathworks.de/matlabcentral/newsreader/view_thread/307845

这篇关于将大型矩阵保存到mat文件的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆