1

I need to save some data in C#.NET and then access them with MATLAB for further process. Is there a way to create the .mat file in C#?

The data I am trying to save are as follows in xml format:

<HandData>
   <HandPoint X="0" Y="0" Z="954.1804" />
   <Handrectangle X="-70" Y="-70" Width="140" Height="140" />
   <Skeleton>
       <Line X="-25" Y="-3" />
       <Line X="-24" Y="-2" />
       ....
   </Skeleton>
</HandData>
4

1 回答 1

2

看看 CSMatIO。不完美但可用。最新版本在这里:https ://sourceforge.net/projects/csmatio/

在这里讨论:http: //www.mathworks.com/matlabcentral/fileexchange/16319

于 2013-11-22T13:10:50.203 回答