LinearSolver

interface LinearSolver<T : Any>

A group of methods to resolve equation A dot X = B, where A and B are matrices or vectors

Functions

equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
inverse
Link copied to clipboard
common
abstract fun inverse(a: Matrix<T>): Matrix<T>
solve
Link copied to clipboard
common
abstract fun solve(a: Matrix<T>, b: Matrix<T>): Matrix<T>
open fun solve(a: Matrix<T>, b: Point<T>): Point<T>
toString
Link copied to clipboard
common
open fun toString(): String