Trait

smile.cas

Matrix

Related Doc: package cas

Permalink

trait Matrix extends Tensor

Matrix: rank-2 tensor.

Linear Supertypes
Tensor, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Matrix
  2. Tensor
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def apply(env: Map[String, Tensor]): Matrix

    Permalink

    Applies the expression.

  2. abstract def d(dx: Var): Matrix

    Permalink

    Returns the partial derivative.

  3. abstract def size: (IntScalar, IntScalar)

    Permalink

    The size of matrix (rows x columns).

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def *(y: Matrix): Matrix

    Permalink
  4. def *(y: Vector): Vector

    Permalink
  5. def *(y: Scalar): Matrix

    Permalink
  6. def +(y: Matrix): Matrix

    Permalink
  7. def -(y: Matrix): Matrix

    Permalink
  8. def ->[B](y: B): (Matrix, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Matrix to ArrowAssoc[Matrix] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  9. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def apply(env: (String, Tensor)*): Matrix

    Permalink

    Applies the expression.

  11. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  12. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def ensuring(cond: (Matrix) ⇒ Boolean, msg: ⇒ Any): Matrix

    Permalink
    Implicit information
    This member is added by an implicit conversion from Matrix to Ensuring[Matrix] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: (Matrix) ⇒ Boolean): Matrix

    Permalink
    Implicit information
    This member is added by an implicit conversion from Matrix to Ensuring[Matrix] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean, msg: ⇒ Any): Matrix

    Permalink
    Implicit information
    This member is added by an implicit conversion from Matrix to Ensuring[Matrix] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean): Matrix

    Permalink
    Implicit information
    This member is added by an implicit conversion from Matrix to Ensuring[Matrix] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  19. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Matrix to StringFormat[Matrix] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  21. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  22. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  23. def inv: Matrix

    Permalink

    The inverse of matrix.

  24. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  25. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. def rank: Option[Int]

    Permalink

    The rank of tensor, i.e.

    The rank of tensor, i.e. the number of dimensions.

    Definition Classes
    MatrixTensor
  29. def shape: Option[Array[IntScalar]]

    Permalink

    The shape of tensor, i.e the size of each dimension.

    The shape of tensor, i.e the size of each dimension.

    Definition Classes
    MatrixTensor
  30. def simplify: Matrix

    Permalink

    Simplify the expression.

  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  32. def t: Matrix

    Permalink

    The transpose of matrix.

  33. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  34. def unary_+: Matrix

    Permalink
  35. def unary_-: Matrix

    Permalink
  36. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. def [B](y: B): (Matrix, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Matrix to ArrowAssoc[Matrix] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Matrix to any2stringadd[Matrix] performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (matrix: any2stringadd[Matrix]).+(other)
    Definition Classes
    any2stringadd

Inherited from Tensor

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Matrix to any2stringadd[Matrix]

Inherited by implicit conversion StringFormat from Matrix to StringFormat[Matrix]

Inherited by implicit conversion Ensuring from Matrix to Ensuring[Matrix]

Inherited by implicit conversion ArrowAssoc from Matrix to ArrowAssoc[Matrix]

Ungrouped