How to ouput .NET object instead of "MWStructArray" in MATLAB Compiler SDK?
2 ビュー (過去 30 日間)
古いコメントを表示
MathWorks Support Team
2023 年 10 月 23 日
編集済み: MathWorks Support Team
2025 年 6 月 20 日
I am trying to create a standalone executable using MATLAB Compiler SDK, where I want to marshal MATLAB structs in C# using .NET structs and classes. I am using the following example as a reference:
I have the following questions:
1) My MATLAB function outputs a "MWStructArray", while I would expect a .NET "Student" object like in the example. How can I return a .NET "Student" object directly from the MATLAB function call?
2) Is there a way to directly unmarshal the "MWStructArray" or "MWCellArray" without having to convert field by field?
採用された回答
MathWorks Support Team
2025 年 6 月 20 日
編集済み: MathWorks Support Team
2025 年 6 月 20 日
You can find the answers below:
1) It is not possible with the native MWArray API using "SortScoresNative.dll". If you use the non-native API from "SortScores.dll", you can return .NET "Student" object inside the MATLAB function. An "MWObjectArray", named for example "obj", will be yielded on the .NET side, and you can cast "obj.Object" to "Student" using "(Student[])obj.Object".
2) It is not possible with the native "MWArray API" using "SortScoresNative.dll", and analogously for "MWCellArray". If you use the non-native API from "SortScores.dll", you may use the static method called "ConvertToNativeTypes" in the base "MWArray" class, as reported in the following link:
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!