Hello together,
is it possible to process the data type "struct" from Matlab in Cameo? So if you have a Matlab function, that you drag into Cameo, which calculates with objects of the struct datatype?
For example, My Matlab Function is this:
function h = Calculate_height(Measure)
h = Measure.length * Measure.width;
end
And the class of Measure is "struct".