Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含 MRI 图像的 .dat 文件。我想在 Matlab 中打开这个文件并将其转换为 .mat 文件,其中将包含“MrPort”和“Reco”。谁能帮我解决这个问题?
谢谢!
您需要将dat文件读入matlab,设置MrPort和Reco变量,然后保存到mat文件:
MrPort
Reco
>> save('myMatFile.mat', 'MrPort', 'Reco' );