How to ouput .NET object instead of "MWStructArray" in MATLAB Compiler SDK?

2 vues (au cours des 30 derniers jours)
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?

Réponse acceptée

MathWorks Support Team
MathWorks Support Team le 20 Juin 2025
Modifié(e) : MathWorks Support Team le 20 Juin 2025
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: 

Plus de réponses (0)

Catégories

En savoir plus sur Deploy to .NET Applications Using MWArray API dans Help Center et File Exchange

Produits


Version

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by