Intel® oneAPI Math Kernel Library
Ask questions and share information with other developers who use Intel® Math Kernel Library.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.

Find sign of determinat

ustatic
Beginner
596 Views

Iwant to find the sign of large matrix determinat. In a iterative dichotomic process, let find when the matrix becomes singular when the sign of determinant changes.

Do you know some function of mkl to do this?

0 Kudos
1 Reply
Michael_C_Intel4
Employee
596 Views


Hello,

I'm afraid there's no easier way to know the sign of the determinant than to compute a determinant, which is equivalent to making LU decomposition.

It would be difficult also to detect a singularity because of the rounding errors during computation. The result could be unpredictable atsingular or ill-conditioned matrix.

Michael.

0 Kudos
Reply