MATLAB precision

后端 未结 3 1909
遥遥无期
遥遥无期 2020-12-11 01:23

How can I implement quadruple precision (128 bit arithmetic) in MATLAB while solving a Matrix eigenvalue problem ?

I am trying to solve a linear stability analysis p

3条回答
  •  不思量自难忘°
    2020-12-11 02:19

    Multiprecision Computing Toolbox for MATLAB has fast quadruple precision mode.

    In particular, it is able to compute eigenvalues & vectors of 100 x 100 matrix by x70-x100 times faster than Symbolic Math Toolbox (using same quadruple precision).

    See Fast Quadruple Precision Computations in MATLAB page for comparisons and details.

    Besides suggested alternatives - Symbolic Math Toolbox and Ben Barrowes's library both have significant limitations, see my answer here.

提交回复
热议问题