在HDevelop中
create_matrix (3, 3, [1,2,3,4,5,6,7,8,9], MatrixID) invert_matrix (MatrixID, 'general', 0, MatrixInvID) *返回逆矩阵 *参数1:原矩阵 *参数4:逆矩阵句柄
在QtCreator中
HTuple hv_MatrixID, hv_MatrixInvID; CreateMatrix(3, 3, ((((((((HTuple(1).Append(2)).Append(3)).Append(4)).Append(5)).Append(6)).Append(7)).Append(8)).Append(9)), &hv_MatrixID); InvertMatrix(hv_MatrixID, "general", 0, &hv_MatrixInvID); //返回逆矩阵 //参数1:原矩阵 //参数4:逆矩阵句柄