Macaulay2 Engine
Loading...
Searching...
No Matches

◆ nullSpace() [1/5]

template<typename RT>
size_t MatrixOps::nullSpace ( const DMat< RT > & A,
DMat< RT > & result_nullspace )
inline

Definition at line 643 of file mat-linalg.hpp.

644{
645 DMatLinAlg<RT> LUdecomp(A);
646 return LUdecomp.kernel(result_nullspace);
647}

References DMatLinAlg< RingType >::kernel().