DecompTypes

Objective-C

NS_ENUM(int, DecompTypes) {
    DECOMP_LU = 0,
    DECOMP_SVD = 1,
    DECOMP_EIG = 2,
    DECOMP_CHOLESKY = 3,
    DECOMP_QR = 4,
    DECOMP_NORMAL = 16
}

Swift

enum DecompTypes : Int32
  • Declaration

    Objective-C

    DECOMP_LU = 0

    Swift

    case DECOMP_LU = 0
  • Declaration

    Objective-C

    DECOMP_SVD = 1

    Swift

    case DECOMP_SVD = 1
  • Declaration

    Objective-C

    DECOMP_EIG = 2

    Swift

    case DECOMP_EIG = 2
  • Declaration

    Objective-C

    DECOMP_CHOLESKY = 3

    Swift

    case DECOMP_CHOLESKY = 3
  • Declaration

    Objective-C

    DECOMP_QR = 4

    Swift

    case DECOMP_QR = 4
  • Declaration

    Objective-C

    DECOMP_NORMAL = 16

    Swift

    case DECOMP_NORMAL = 16