Enum Class Transpose

java.lang.Object
java.lang.Enum<Transpose>
smile.math.blas.Transpose
All Implemented Interfaces:
Serializable, Comparable<Transpose>, Constable

public enum Transpose extends Enum<Transpose>
Matrix transpose.
  • Enum Constant Details

    • NO_TRANSPOSE

      public static final Transpose NO_TRANSPOSE
      Normal operation on the matrix.
    • TRANSPOSE

      public static final Transpose TRANSPOSE
      Transpose operation on the matrix.
    • CONJUGATE_TRANSPOSE

      public static final Transpose CONJUGATE_TRANSPOSE
      Conjugate transpose operation on the matrix.
  • Method Details

    • values

      public static Transpose[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Transpose valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • blas

      public int blas()
      Returns the int value for BLAS.
      Returns:
      the int value for BLAS.
    • lapack

      public byte lapack()
      Returns the byte value for LAPACK.
      Returns:
      the byte value for LAPACK.