クラス
org.mklab.nfc.matrix.NormType の使用

NormType を使用しているパッケージ
org.mklab.nfc.matrix 行列に関するクラスを提供します。 
 

org.mklab.nfc.matrix での NormType の使用
 

NormType を返す org.mklab.nfc.matrix のメソッド
static NormType NormType.valueOf(String name)
          指定した名前を持つこの型の列挙型定数を返します。
static NormType[] NormType.values()
          この列挙型の定数を含む配列を宣言されている順序で返します。
 

NormType 型のパラメータを持つ org.mklab.nfc.matrix のメソッド
static double DoubleMatrixUtil.norm(double[][] matrix, NormType type)
          行列のノルムを返します。
static double DoubleComplexMatrixUtil.norm(DoubleComplexNumber[][] matrix, NormType type)
          行列のノルムを返します。
static
<E extends NumericalScalar<E>>
NumericalScalar<?>
NumericalMatrixUtil.norm(E[][] matrix, NormType type)
          行列のノルムを返します。
 NumericalScalar<?> NumericalMatrixOperator.norm(NormType normType)
          norm(NormType.FROBENIUS)でフロベニウスノルム、 norm( NormType.INFINITY)で無限大ノルム、 norm( NormType.ONE)で1-ノルムを、 norm(NormType.TWO)で最大特異値を返します。
 NumericalScalar<?> NumericalMatrix.norm(NormType normType)
           
 DoubleNumber DoubleMatrix.norm(NormType type)
           
 NumericalScalar<?> DoubleComplexMatrix.norm(NormType type)