I have native.dll file created as a result to deployment matlab function i use the native file in c# project the matlab function has 2 output
[ID,reco_ratio] = Orintation(Query_images,target_images)
when i call the function from c# project (using native file) i try to retrieve the 2 output
Orintation_class temp = new Orintation_class();
object temp2 = temp.Orintation(Query_images, Query_images);
Double[,] q = temp2 as Double[,];
but the returned value is only the first output
so , How can i retrieve the 2 outputs ?