creating complex MATLAB struct in C++ without using MATLAB Engine
显示 更早的评论
I am looking for a way to implement a data converter in C++ that writes data into a complex MATLAB struct and stores it in a .mat file.
The struct content is should look like this:
struct1 {
substruct {
array21
array22
}
array11
array12
}
The implementation in MATLAB would for instance look like this:
% creating the substruct
Substruct(1).sec = 11;
Substruct(1).nsec = 386;
Substruct(2).sec = 12;
Substruct(2).nsec = 415;
Substruct(3).sec = 13;
Substruct(3).nsec = 543;
% creating struct1
struct1.substruct = Substruct(:);
struct1.my_double = [3912 4356 5638 6838]';
struct1.my_uint = 123;
Since the converter requires to run on computers which do not have MATLAB installed I want to avoid using the MATLAB Engine. Does anyone know if that is possible at all? Thank you for any advices.
1 个评论
Guillaume
2019-7-25
In case, you're not aware, a simpler way to construct your substruct:
substruct = struct('sec', {11; 12; 13}, 'nsec', {386; 415; 543})
采纳的回答
更多回答(1 个)
Guillaume
2019-7-25
0 个投票
The documentation of the mat-file format 5 is publicly available, so you can use that to construct your mat file.
Unfortunately, I'm not aware of the same documentation for the newer 7.x mat file formats but any version of matlab (except extremely old ones) can open version 5.
类别
在 帮助中心 和 File Exchange 中查找有关 Call C++ from MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!