Package space.kscience.kmath.real
Types
Functions
Link copied to clipboard
inline fun RealMatrix.appendColumn(crossinline mapper: (Buffer<Double>) -> Double): RealMatrix
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun Buffer.Companion.fromRange(range: ClosedFloatingPointRange<Double>, numberOfPoints: Int): DoubleBuffer
Content copied to clipboard
Create a Buffer-based grid with equally distributed numberOfPoints points. The range could be increasing or decreasing. If range has a zero size, then the buffer consisting of numberOfPoints equal values is returned.
Link copied to clipboard
Inverse a square real matrix using LUP decomposition
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
inline fun RealMatrix.map(crossinline transform: (Double) -> Double): RealMatrix
Content copied to clipboard
Link copied to clipboard
inline fun DoubleVector.mapIndexed(transform: (index: Int, value: Double) -> Double): DoubleVector
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Subtraction operation between BufferND and single element
Link copied to clipboard
Summation operation for BufferND and single element
Link copied to clipboard
Link copied to clipboard
fun realMatrix(rowNum: Int, colNum: Int): MatrixBuilder<Double, DoubleField>
Content copied to clipboard
fun realMatrix(rowNum: Int, colNum: Int, initializer: DoubleField.(i: Int, j: Int) -> Double): RealMatrix
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
infix fun ClosedFloatingPointRange<Double>.step(step: Double): DoubleBuffer
Content copied to clipboard
Convert double range to sequence.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun Buffer.Companion.withFixedStep(range: ClosedFloatingPointRange<Double>, step: Double): DoubleBuffer
Content copied to clipboard
Create a Buffer-based grid with equally distributed points with a fixed step. The range could be increasing or decreasing. If the step is larger than the range size, single point is returned.