矩阵转换

MWNumericArray temp = (MWNumericArray)ResOut[0];

//矩阵转换

Array netInterfaceMatrix = temp.ToArray(MWArrayComponent.Real); //c#规范的矩阵

double[,] location = (double[,])netInterfaceMatrix;

原文地址:https://www.cnblogs.com/greencolor/p/1557575.html