object Matrix2D extends Error with Serializable

The Matrix2D companion object provides factory methods for creating vectors.

Linear Supertypes
Serializable, Serializable, Error, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Matrix2D
  2. Serializable
  3. Serializable
  4. Error
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def apply(table: Relation, colPos1: Int, colPos2: Int): Matrix2D

    Create a Matrix2D from the three columns in the given 'table'.

    Create a Matrix2D from the three columns in the given 'table'. FIX - make more general than Relation

    colPos1

    the first column position

    colPos2

    the second column position

  2. def apply(a: MatriD): Matrix2D

    Create a Matrix2D from a three-column MatriD.

    Create a Matrix2D from a three-column MatriD. FIX - try to avoid casting

    a

    the MatriD object

  3. def apply(x: Double, y: Double): Matrix2D

    Create a Matrix2D from the three coordinates (one row, three columns).

    Create a Matrix2D from the three coordinates (one row, three columns).

    x

    the first coordinate

    y

    the second coordinate

  4. final def flaw(method: String, message: String): Unit
    Definition Classes
    Error