Packages

class Matrix[A] extends argon.lang.Top[Matrix[A]] with lang.Struct[Matrix[A]] with Ref[scala.Array[Any], Matrix[A]]

A two-dimensional matrix on the host

Linear Supertypes
argon.lang.Struct[Matrix[A]], argon.lang.Top[Matrix[A]], Ref[Nothing, Matrix[A]], Exp[Nothing, Matrix[A]], ExpType[Nothing, spatial.lang.host.Matrix[A] @scala.annotation.unchecked.uncheckedVariance], Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Matrix
  2. Struct
  3. Top
  4. Ref
  5. Exp
  6. ExpType
  7. Equals
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Matrix()(implicit arg0: Type[A])

Type Members

  1. type L = Nothing
    Definition Classes
    Ref → Exp → ExpType

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. def !==(that: Any): argon.lang.Bit
    Definition Classes
    Top
  3. final def ##(): Int
    Definition Classes
    AnyRef → Any
  4. def ++(that: Any): argon.lang.Text
    Definition Classes
    Top
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def ===(that: Any): argon.lang.Bit
    Definition Classes
    Top
  7. val A: Type[A]
  8. val __neverMutable: Boolean
    Definition Classes
    Struct → ExpType
  9. val __typeArgs: Seq[Type[_]]
    Attributes
    protected
    Definition Classes
    Matrix → ExpType
  10. val __typeParams: Seq[Type[A]]
    Attributes
    protected
    Definition Classes
    Matrix → ExpType
  11. val __typePrefix: String
    Attributes
    protected
    Definition Classes
    Matrix → ExpType
  12. def apply(i: lang.I32, j: lang.I32): A

    Returns the element in this Matrix at the given 2-dimensional address (i, j).

  13. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  14. val box: <:<[Matrix[A], lang.Struct[Matrix[A]]]
    Definition Classes
    Matrix → Struct
  15. final def canEqual(that: Any): Boolean
    Definition Classes
    Ref → Equals
  16. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  17. def cols: lang.I32

    Returns the number of columns in this Matrix.

  18. def data: Array[A]
  19. def dims: Seq[lang.I32]

    Returns the dimensions of this Matrix.

  20. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def eql(that: Matrix[A]): lang.Bit
    Definition Classes
    Matrix → Struct → Top
  22. final def equals(x: Any): Boolean
    Definition Classes
    Ref → Equals → AnyRef → Any
  23. implicit val evRef: <:<[spatial.lang.host.Matrix[A] @scala.annotation.unchecked.uncheckedVariance, Ref[Nothing, spatial.lang.host.Matrix[A] @scala.annotation.unchecked.uncheckedVariance]]
    Attributes
    protected[argon]
    Definition Classes
    ExpType
  24. def extract: Option[Any]
    Attributes
    protected
    Definition Classes
    Exp
  25. def field[F](name: String)(implicit arg0: Type[F], ctx: SrcCtx, state: State): F
    Definition Classes
    Struct
  26. def fieldMap: Seq[(String, Exp[_, _])]
    Definition Classes
    Struct
  27. def fields: Seq[(String, ExpType[Any, _ >: argon.lang.Fix[argon.lang.types.TRUE, argon.lang.types._32, argon.lang.types._0] with Array[A] <: argon.lang.Top[_ >: argon.lang.Fix[argon.lang.types.TRUE, argon.lang.types._32, argon.lang.types._0] with Array[A] <: argon.lang.Top[_ >: argon.lang.Fix[argon.lang.types.TRUE, argon.lang.types._32, argon.lang.types._0] with Array[A] <: Equals]]])]
    Definition Classes
    Matrix → Struct
  28. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  29. def flatten: Array[A]

    Returns a flattened, immutable @Array view of this Matrix's data.

  30. def foreach(func: (A) ⇒ lang.Void): lang.Void

    Applies the function func on each element in this Matrix.

  31. def fresh: Matrix[A]
    Attributes
    protected
    Definition Classes
    Matrix → ExpType
  32. final def from(c: Any, warnOnLoss: Boolean, errorOnLoss: Boolean, isParam: Boolean, saturating: Boolean, unbiased: Boolean): spatial.lang.host.Matrix[A] @scala.annotation.unchecked.uncheckedVariance
    Definition Classes
    ExpType
  33. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  34. def getFrom(c: Any, isParam: Boolean, saturating: Boolean, unbiased: Boolean): Option[(spatial.lang.host.Matrix[A] @scala.annotation.unchecked.uncheckedVariance, Boolean)]
    Definition Classes
    ExpType
  35. final def hashCode(): Int
    Definition Classes
    Ref → AnyRef → Any
  36. def infix_!=(that: Any): argon.lang.Bit
    Definition Classes
    Top
  37. def infix_==(that: Any): argon.lang.Bit
    Definition Classes
    Top
  38. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  39. def length: lang.I32

    Returns the number of elements in the Matrix.

  40. def map[R](func: (A) ⇒ R)(implicit arg0: Type[R]): Matrix[R]

    Returns a new Matrix created using the mapping func over each element in this Matrix.

  41. def me: spatial.lang.host.Matrix[A] @scala.annotation.unchecked.uncheckedVariance
    Attributes
    protected
    Definition Classes
    ExpType
  42. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  43. def neql(that: Matrix[A]): lang.Bit
    Definition Classes
    Matrix → Struct → Top
  44. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  45. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  46. def reduce(rfunc: (A, A) ⇒ A): A

    Reduces the elements in this Matrix into a single element using associative function rfunc.

  47. def reorder(ordering: Seq[Int]): Matrix[A]

    Reorders the Matrix based on given ordering (i.e.- reorder(1,0) is the same as transpose)

  48. def rows: lang.I32

    Returns the number of rows in this Matrix.

  49. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  50. def t: Matrix[A]

    Returns the transpose of this Matrix.

  51. final def toString(): String
    Definition Classes
    Ref → AnyRef → Any
  52. def toText: argon.lang.Text
    Definition Classes
    Top
  53. def unrelated(that: Any): Unit
    Attributes
    protected
    Definition Classes
    Top
  54. def update(i: lang.I32, j: lang.I32, elem: A): lang.Void

    Updates the element at the given two dimensional address to elem.

  55. def value(c: Any): Option[(Nothing, Boolean)]
    Attributes
    protected
    Definition Classes
    ExpType
  56. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  57. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  58. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  59. final def withCheck[T](x: ⇒ T)(eql: (T) ⇒ Boolean): Option[(T, Boolean)]
    Attributes
    protected
    Definition Classes
    ExpType
  60. def zip[S, R](that: Matrix[S])(func: (A, S) ⇒ R)(implicit arg0: Type[S], arg1: Type[R]): Matrix[R]

    Returns a new Matrix created using the pairwise mapping func over each element in this Matrix and the corresponding element in that.

Inherited from argon.lang.Struct[Matrix[A]]

Inherited from argon.lang.Top[Matrix[A]]

Inherited from Ref[Nothing, Matrix[A]]

Inherited from Exp[Nothing, Matrix[A]]

Inherited from ExpType[Nothing, spatial.lang.host.Matrix[A] @scala.annotation.unchecked.uncheckedVariance]

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped