scalation.linalgebra

MatrixC

Related Docs: class MatrixC | package linalgebra

object MatrixC extends Error with Serializable

The MatrixC companion object provides operations for MatrixC that don't require 'this' (like static methods in Java). Typically used to form matrices from vectors.

Linear Supertypes
Serializable, Serializable, Error, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. MatrixC
  2. Serializable
  3. Serializable
  4. Error
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

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

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. def flaw(method: String, message: String): Unit

    Show the flaw by printing the error message.

    Show the flaw by printing the error message.

    method

    the method where the error occurred

    message

    the error message

    Definition Classes
    Error
  10. def form_cw(x: VectorC, s: Complex): MatrixC

    Form a matrix from a vector and a scalar, column-wise.

    Form a matrix from a vector and a scalar, column-wise.

    x

    the first vector -> column 0

    s

    the second scalar -> column 1 (repeat s)

  11. def form_cw(s: Complex, y: VectorC): MatrixC

    Form a matrix from a scalar and a vector, column-wise.

    Form a matrix from a scalar and a vector, column-wise.

    s

    the first scalar -> column 0 (repeat s)

    y

    the second vector -> column 1

  12. def form_cw(x: VectorC, y: VectorC): MatrixC

    Form a matrix from two vectors, column-wise.

    Form a matrix from two vectors, column-wise.

    x

    the first vector -> column 0

    y

    the second vector -> column 1

  13. def form_rw(x: VectorC, s: Complex): MatrixC

    Form a matrix from a vector and a scalar, row-wise.

    Form a matrix from a vector and a scalar, row-wise.

    x

    the first vector -> row 0

    s

    the second scalar -> row 1 (repeat scalar)

  14. def form_rw(s: Complex, y: VectorC): MatrixC

    Form a matrix from scalar and a vector, row-wise.

    Form a matrix from scalar and a vector, row-wise.

    s

    the first scalar -> row 0 (repeat s)

    y

    the second vector -> row 1

  15. def form_rw(x: VectorC, y: VectorC): MatrixC

    Form a matrix from two vectors, row-wise.

    Form a matrix from two vectors, row-wise.

    x

    the first vector -> row 0

    y

    the second vector -> row 1

  16. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

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

    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  22. def outer(x: VectorC, y: VectorC): MatrixC

    Compute the outer product of vector x and vector y.

    Compute the outer product of vector x and vector y. The result of the outer product is a matrix where c(i, j) is the product of i-th element of x with the j-th element of y.

    x

    the first vector

    y

    the second vector

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

    Definition Classes
    AnyRef
  24. def toString(): String

    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Error

Inherited from AnyRef

Inherited from Any

Ungrouped