Why can't some matrices be used to assemble components?
Hello, everyone. I tried to assemble the components with a matrix through the function "ProAsmcompAssemble()". I found that some matrices could be assembled successfully, some matrices could not, and the matrices themselves were correct.
For example <matrix_1> cannot be assembled, it will return "PRO_TK_BAD_INPUTS".
ProMatrix matrix_1 = { { 0.707107, 0.707107, 0.0, 0.0 },
{-0.707107, 0.707107, 0.0, 0.0},
{0.0, 0.0, 1.0, 0.0},
{33.2321, 64.3448, -130.0, 1.0} };
The following matrix <matrix_2> can be assembled successfully,
ProMatrix matrix_2 = { {1.0, 0.0, 0.0, 0.0},
{0.0, 1.0, 0.0, 0.0},
{0.0, 0.0, 1.0, 0.0},
{0.0, 0.0, 0.0, 1.0} };
I don't understand why this is, how to solve this problem, can someone tell me? Thanks!
