Can .mat files be moved between platforms? (IE say from a mac running OS X 10.6.5 with MatLab 2014a to RedHat Unix running 2016a or to Windows 10 running 2016b?)
조회 수: 2 (최근 30일)
이전 댓글 표시
How portable are .mat files when using MatLab? I found a couple of good information sources in support, but none answered my question.
댓글 수: 0
채택된 답변
John D'Errico
2017년 3월 3일
Yes. They are completely portable, as long as...
1. You have the same set of toolboxes on each platform.
2. You are careful about system calls, and how you treat files, OUTSIDE of MATLAB. After all, paths and path separators are different on different platforms. So you need to use the appropriate tools for that, like pathsep, filesep, etc.
3. You do not use compiled code, which can be platform dependent.
Otherwise, m-files are simple text files. Multiple platforms are no problem. I've used the same set of tools on the Mac, Windoze, Unix, going back and forth with no problems.
댓글 수: 3
Walter Roberson
2017년 3월 4일
Just worked out this evening that the representation of digitalfilter objects changed as of R2015b so those would not be portable between the versions you mentioned
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Import and Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!