Companion

object Companion : DoubleBufferOps

Functions

acos
Link copied to clipboard
common
open override fun acos(arg: Buffer<Double>): DoubleBuffer
Computes the inverse cosine of arg.
acosh
Link copied to clipboard
common
open override fun acosh(arg: Buffer<Double>): DoubleBuffer
Computes the inverse hyperbolic cosine of arg.
add
Link copied to clipboard
common
open override fun add(left: Buffer<Double>, right: Buffer<Double>): DoubleBuffer
Addition of two elements.
asin
Link copied to clipboard
common
open override fun asin(arg: Buffer<Double>): DoubleBuffer
Computes the inverse sine of arg.
asinh
Link copied to clipboard
common
open override fun asinh(arg: Buffer<Double>): DoubleBuffer
Computes the inverse hyperbolic sine of arg.
atan
Link copied to clipboard
common
open override fun atan(arg: Buffer<Double>): DoubleBuffer
Computes the inverse tangent of arg.
atanh
Link copied to clipboard
common
open override fun atanh(arg: Buffer<Double>): DoubleBuffer
Computes the inverse hyperbolic tangent of arg.
binaryOperation
Link copied to clipboard
common
open fun binaryOperation(operation: String, left: Buffer<Double>, right: Buffer<Double>): Buffer<Double>
Dynamically invokes a binary operation with the certain name.
binaryOperationFunction
Link copied to clipboard
common
open override fun binaryOperationFunction(operation: String): (left: Buffer<Double>, right: Buffer<Double>) -> Buffer<Double>
Dynamically dispatches a binary operation with the certain name.
bindSymbol
Link copied to clipboard
common
open fun bindSymbol(value: String): Buffer<Double>
The same as bindSymbolOrNull but throws an error if symbol could not be bound
bindSymbolOrNull
Link copied to clipboard
common
open fun bindSymbolOrNull(value: String): Buffer<Double>?
Wraps a raw string to T object.
cos
Link copied to clipboard
common
open override fun cos(arg: Buffer<Double>): DoubleBuffer
Computes the cosine of arg.
cosh
Link copied to clipboard
common
open override fun cosh(arg: Buffer<Double>): DoubleBuffer
Computes the hyperbolic cosine of arg.
div
Link copied to clipboard
common
open operator fun Buffer<Double>.div(other: Buffer<Double>): Buffer<Double>
Division of two elements.
open operator fun Buffer<Double>.div(k: Number): Buffer<Double>
Division of this element by scalar.
divide
Link copied to clipboard
common
open override fun divide(left: Buffer<Double>, right: Buffer<Double>): DoubleBuffer
Division of two elements.
exp
Link copied to clipboard
common
open override fun exp(arg: Buffer<Double>): DoubleBuffer
Computes Euler's number e raised to the power of the value arg.
ln
Link copied to clipboard
common
open override fun ln(arg: Buffer<Double>): DoubleBuffer
Computes the natural logarithm (base e) of the value arg.
minus
Link copied to clipboard
common
open operator override fun Buffer<Double>.minus(other: Buffer<Double>): DoubleBuffer
Subtraction of two elements.
multiply
Link copied to clipboard
common
open override fun multiply(left: Buffer<Double>, right: Buffer<Double>): DoubleBuffer
Multiplies two elements.
norm
Link copied to clipboard
common
open override fun norm(arg: Buffer<Double>): Double
Computes the norm of arg (i.e., absolute value or vector length).
plus
Link copied to clipboard
common
open operator override fun Buffer<Double>.plus(other: Buffer<Double>): DoubleBuffer
Addition of two elements.
pow
Link copied to clipboard
common
open infix fun Buffer<Double>.pow(pow: Number): Buffer<Double>
Raises this value to the power pow.
power
Link copied to clipboard
common
open override fun power(arg: Buffer<Double>, pow: Number): DoubleBuffer
Raises arg to the power pow.
scale
Link copied to clipboard
common
open override fun scale(a: Buffer<Double>, value: Double): DoubleBuffer
Scaling an element by a scalar.
sin
Link copied to clipboard
common
open override fun sin(arg: Buffer<Double>): DoubleBuffer
Computes the sine of arg.
sinh
Link copied to clipboard
common
open override fun sinh(arg: Buffer<Double>): DoubleBuffer
Computes the hyperbolic sine of arg.
sqrt
Link copied to clipboard
common
open fun sqrt(arg: Buffer<Double>): Buffer<Double>
Computes the square root of the value arg.
tan
Link copied to clipboard
common
open override fun tan(arg: Buffer<Double>): DoubleBuffer
Computes the tangent of arg.
tanh
Link copied to clipboard
common
open override fun tanh(arg: Buffer<Double>): DoubleBuffer
Computes the hyperbolic tangent of arg.
times
Link copied to clipboard
common
open operator fun Buffer<Double>.times(other: Buffer<Double>): Buffer<Double>
Multiplies this element by scalar.
open operator fun Number.times(other: Buffer<Double>): Buffer<Double>
Multiplication of this number by element.
open operator fun Buffer<Double>.times(k: Number): Buffer<Double>
Multiplication of this element by a scalar.
unaryMinus
Link copied to clipboard
common
open operator override fun Buffer<Double>.unaryMinus(): DoubleBuffer
The negation of this element.
unaryOperation
Link copied to clipboard
common
open fun unaryOperation(operation: String, arg: Buffer<Double>): Buffer<Double>
Dynamically invokes a unary operation with the certain name.
unaryOperationFunction
Link copied to clipboard
common
open override fun unaryOperationFunction(operation: String): (arg: Buffer<Double>) -> Buffer<Double>
Dynamically dispatches a unary operation with the certain name.
unaryPlus
Link copied to clipboard
common
open operator fun Buffer<Double>.unaryPlus(): Buffer<Double>
Returns this value.

Sources

common source
Link copied to clipboard