Hi Hans,
I understand that you have a 3D byte array in C# that you need to pass to a MATLAB function, which expects a 3D byte array as input, using the “MWArray” interface provided by the MATLAB Compiler SDK.
To achieve this, you can follow these points:
- Create your 3D byte array in C#.
- Convert the C# byte array to an “MWNumericArray”, which is a specialized type of “MWArray” designed for numeric data.
- Invoke the MATLAB function with the “MWNumericArray” as an argument.
- The function's return value will be stored in an “MWArray” object, which you can then use in your C# application.
“MWArray” is the base class for different array types in MATLAB, and “MWNumericArray” is a derived class that specifically handles numeric data, making it suitable for transferring numeric arrays like your byte array.
For further guidance on data conversion and handling different data types when interfacing between .NET and MATLAB, you can utilize the below MATLAB resources:
These resources provide valuable information on how to effectively manage data conversion, ensuring accurate communication between your C# application and MATLAB functions.
Hope this helps!