Invert 4x4 matrix - Numerical most stable solution needed

后端 未结 6 813
青春惊慌失措
青春惊慌失措 2021-02-04 08:41

I want to invert a 4x4 matrix. My numbers are stored in fixed-point format (1.15.16 to be exact).

With floating-point arithmetic I usually just build the adjoint matrix

6条回答
  •  囚心锁ツ
    2021-02-04 09:11

    Meta-answer: Is it really a general 4x4 matrix? If your matrix has a special form, then there are direct formulas for inverting that would be fast and keep your operation count down.

    For example, if it's a standard homogenous coordinate transform from graphics, like:

    [ux vx wx tx]
    [uy vy wy ty]
    [uz vz wz tz]
    [ 0  0  0  1]
    

    (assuming a composition of rotation, scale, translation matrices)

    then there's an easily-derivable direct formula, which is

    [ux uy uz -dot(u,t)]
    [vx vy vz -dot(v,t)]
    [wx wy wz -dot(w,t)]
    [ 0  0  0     1    ]
    

    (ASCII matrices stolen from the linked page.)

    You probably can't beat that for loss of precision in fixed point.

    If your matrix comes from some domain where you know it has more structure, then there's likely to be an easy answer.

提交回复
热议问题