I have my cell array (89*1 cell) in Matlab that I want to convert into .Net string array (string[]). I'm using next code:
b = NET.createArray('System.String',length(a));
b = NET.convertArray(a{1},'System.String');
In the result I catch next message: Conversion from 'cell' array type is not supported.
a = {'hello', 'world'}; b = NET.createArray('System.String',length(a));b = NET.convertArray(a{1},'System.String');I get the error: Conversion from 'char' array type is not supported.