6
A = {{1., 0.}, {0., 2.}};
LinearAlgebra`MatrixConditionNumber[A]
rhermans
  • 36,518
  • 4
  • 57
  • 149

1 Answers1

10

After @CarlWoll's comment:

You can search for undocumented functions by using Names

Names["*`" <> "MatrixConditionNumber" <> "*"]
(* {"LinearAlgebra`Private`MatrixConditionNumber"} *)

Now calling the correct function name

A = {{1., 0.}, {0., 2.}};
LinearAlgebra`Private`MatrixConditionNumber[A]
(* 2. *)
rhermans
  • 36,518
  • 4
  • 57
  • 149