FloatField

object FloatField : ExtendedField<Float> , Norm<Float, Float>

A field for Float without boxing. Does not produce appropriate field element.

Functions

acos
Link copied to clipboard
common
open inline override fun acos(arg: Float): Float
Computes the inverse cosine of arg.
acosh
Link copied to clipboard
common
open inline override fun acosh(arg: Float): Float
Computes the inverse hyperbolic cosine of arg.
add
Link copied to clipboard
common
open inline override fun add(a: Float, b: Float): Float
asin
Link copied to clipboard
common
open inline override fun asin(arg: Float): Float
Computes the inverse sine of arg.
asinh
Link copied to clipboard
common
open inline override fun asinh(arg: Float): Float
Computes the inverse hyperbolic sine of arg.
atan
Link copied to clipboard
common
open inline override fun atan(arg: Float): Float
Computes the inverse tangent of arg.
atanh
Link copied to clipboard
common
open inline override fun atanh(arg: Float): Float
Computes the inverse hyperbolic tangent of arg.
binaryOperation
Link copied to clipboard
common
open fun binaryOperation(operation: String, left: Float, right: Float): Float
Dynamically invokes a binary operation with the certain name.
binaryOperationFunction
Link copied to clipboard
common
open override fun binaryOperationFunction(operation: String): (left: Float, right: Float) -> Float
bindSymbol
Link copied to clipboard
common
open fun bindSymbol(value: String): Float
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): Float?
Wraps a raw string to T object.
cos
Link copied to clipboard
common
open inline override fun cos(arg: Float): Float
Computes the cosine of arg.
cosh
Link copied to clipboard
common
open inline override fun cosh(arg: Float): Float
Computes the hyperbolic cosine of arg.
div
Link copied to clipboard
common
open inline operator override fun Float.div(b: Float): Float
open operator fun Float.div(k: Number): Float
Division of this element by scalar.
divide
Link copied to clipboard
common
open inline override fun divide(a: Float, b: Float): Float
exp
Link copied to clipboard
common
open inline override fun exp(arg: Float): Float
Computes Euler's number e raised to the power of the value arg.
leftSideNumberOperation
Link copied to clipboard
common
open fun leftSideNumberOperation(operation: String, left: Number, right: Float): Float
Dynamically invokes a binary operation with the certain name with numeric first argument.
leftSideNumberOperationFunction
Link copied to clipboard
common
open fun leftSideNumberOperationFunction(operation: String): (left: Number, right: Float) -> Float
Dynamically dispatches a binary operation with the certain name with numeric first argument.
ln
Link copied to clipboard
common
open inline override fun ln(arg: Float): Float
Computes the natural logarithm (base e) of the value arg.
minus
Link copied to clipboard
common
open inline operator override fun Float.minus(b: Float): Float
multiply
Link copied to clipboard
common
open inline override fun multiply(a: Float, b: Float): Float
norm
Link copied to clipboard
common
open inline override fun norm(arg: Float): Float
Computes the norm of arg (i.e.
number
Link copied to clipboard
common
open override fun number(value: Number): Float
plus
Link copied to clipboard
common
open inline operator override fun Float.plus(b: Float): Float
pow
Link copied to clipboard
common
open infix fun Float.pow(pow: Number): Float
Raises this value to the power pow.
power
Link copied to clipboard
common
open inline override fun power(arg: Float, pow: Number): Float
Raises arg to the power pow.
rightSideNumberOperation
Link copied to clipboard
common
open fun rightSideNumberOperation(operation: String, left: Float, right: Number): Float
Dynamically invokes a binary operation with the certain name with numeric second argument.
rightSideNumberOperationFunction
Link copied to clipboard
common
open override fun rightSideNumberOperationFunction(operation: String): (left: Float, right: Number) -> Float
Dynamically dispatches a binary operation with the certain name with numeric first argument.
scale
Link copied to clipboard
common
open override fun scale(a: Float, value: Double): Float
sin
Link copied to clipboard
common
open inline override fun sin(arg: Float): Float
Computes the sine of arg.
sinh
Link copied to clipboard
common
open inline override fun sinh(arg: Float): Float
Computes the hyperbolic sine of arg.
sqrt
Link copied to clipboard
common
open fun sqrt(arg: Float): Float
Computes the square root of the value arg.
tan
Link copied to clipboard
common
open inline override fun tan(arg: Float): Float
Computes the tangent of arg.
tanh
Link copied to clipboard
common
open inline override fun tanh(arg: Float): Float
Computes the hyperbolic tangent of arg.
times
Link copied to clipboard
common
open inline operator override fun Float.times(b: Float): Float
open operator fun Float.times(k: Number): Float
Multiplication of this element by a scalar.
open operator fun Number.times(b: Float): Float
Multiplication of this number by element.
unaryMinus
Link copied to clipboard
common
open inline operator override fun Float.unaryMinus(): Float
unaryOperation
Link copied to clipboard
common
open fun unaryOperation(operation: String, arg: Float): Float
Dynamically invokes an unary operation with the certain name.
unaryOperationFunction
Link copied to clipboard
common
open override fun unaryOperationFunction(operation: String): (arg: Float) -> Float
Dynamically dispatches an unary operation with the certain name.
unaryPlus
Link copied to clipboard
common
open operator fun Float.unaryPlus(): Float
Returns this value.

Properties

one
Link copied to clipboard
common
open override val one: Float
neutral operation for multiplication
zero
Link copied to clipboard
common
open override val zero: Float
The neutral element of addition.