Package apple.accelerate.enums
Class sparse_norm
- java.lang.Object
-
- apple.accelerate.enums.sparse_norm
-
public final class sparse_norm extends java.lang.ObjectThe norm specifier [@constant] SPARSE_NORM_ONE Matrix element wise: sum over i,j ( | A[i,j] | ) Matrix operator : max over j ( sum over i ( | A[i,j] | ) Vector element wise: sum over i ( | x[i] | ) [@constant] SPARSE_NORM_TWO Matrix element wise: sqrt( sum over i,j (A[i,j])^2 ) Matrix operator : Largest singular value of matrix, note that the operator SPARSE_NORM_TWO is significantly more expensive than other norm operations. Vector element wise: sqrt( sum over i (x[i])^2 ) [@constant] SPARSE_NORM_INF Matrix element wise: max over i,j ( | A[i,j] | ) Matrix operator : max over i ( sum over j ( | A[i,j] | ) Vector element wise: max over i ( | x[i] | ) [@constant] SPARSE_NORM_R1 Matrix element wise: sum over j ( sqrt ( sum over i ( A[i,j]^2 ) ) ) Matrix operator : Not supported. Undefined Vector element wise: Not supported. Undefined
-
-
Field Summary
Fields Modifier and Type Field Description static intSPARSE_NORM_INFstatic intSPARSE_NORM_ONEstatic intSPARSE_NORM_R1static intSPARSE_NORM_TWO
-
-
-
Field Detail
-
SPARSE_NORM_ONE
public static final int SPARSE_NORM_ONE
- See Also:
- Constant Field Values
-
SPARSE_NORM_TWO
public static final int SPARSE_NORM_TWO
- See Also:
- Constant Field Values
-
SPARSE_NORM_INF
public static final int SPARSE_NORM_INF
- See Also:
- Constant Field Values
-
SPARSE_NORM_R1
public static final int SPARSE_NORM_R1
- See Also:
- Constant Field Values
-
-