ValueAndErrorField

object ValueAndErrorField : Field<ValueAndError>

An algebra for double value + its error combination. The multiplication assumes linear error propagation

Functions

Link copied to clipboard
open override fun add(left: ValueAndError, right: ValueAndError): ValueAndError
Link copied to clipboard
open fun binaryOperation(operation: String, left: ValueAndError, right: ValueAndError): ValueAndError
Link copied to clipboard
open override fun binaryOperationFunction(operation: String): (left: ValueAndError, right: ValueAndError) -> ValueAndError
Link copied to clipboard
open fun bindSymbol(value: String): ValueAndError
Link copied to clipboard
open fun bindSymbolOrNull(value: String): ValueAndError?
Link copied to clipboard
open operator fun ValueAndError.div(arg: ValueAndError): ValueAndError
open operator fun ValueAndError.div(k: Number): ValueAndError
Link copied to clipboard
open override fun divide(left: ValueAndError, right: ValueAndError): ValueAndError
Link copied to clipboard
open fun export(arg: ValueAndError): ValueAndError
Link copied to clipboard
open fun leftSideNumberOperation(operation: String, left: Number, right: ValueAndError): ValueAndError
Link copied to clipboard
open fun leftSideNumberOperationFunction(operation: String): (left: Number, right: ValueAndError) -> ValueAndError
Link copied to clipboard
open operator fun ValueAndError.minus(arg: ValueAndError): ValueAndError
Link copied to clipboard
open override fun multiply(left: ValueAndError, right: ValueAndError): ValueAndError
Link copied to clipboard
open override fun number(value: Number): ValueAndError
Link copied to clipboard
open operator fun ValueAndError.plus(arg: ValueAndError): ValueAndError
Link copied to clipboard
open fun power(arg: ValueAndError, pow: Int): ValueAndError
open fun power(arg: ValueAndError, pow: UInt): ValueAndError
Link copied to clipboard
open fun rightSideNumberOperation(operation: String, left: ValueAndError, right: Number): ValueAndError
Link copied to clipboard
open fun rightSideNumberOperationFunction(operation: String): (left: ValueAndError, right: Number) -> ValueAndError
Link copied to clipboard
open override fun scale(a: ValueAndError, value: Double): ValueAndError
Link copied to clipboard
open operator fun ValueAndError.times(arg: ValueAndError): ValueAndError
open operator fun Number.times(arg: ValueAndError): ValueAndError
open operator fun ValueAndError.times(k: Number): ValueAndError
Link copied to clipboard
open operator override fun ValueAndError.unaryMinus(): ValueAndError
Link copied to clipboard
open fun unaryOperation(operation: String, arg: ValueAndError): ValueAndError
Link copied to clipboard
open override fun unaryOperationFunction(operation: String): (arg: ValueAndError) -> ValueAndError
Link copied to clipboard
open operator fun ValueAndError.unaryPlus(): ValueAndError

Properties

Link copied to clipboard
open override val one: ValueAndError
Link copied to clipboard
open override val zero: ValueAndError

Sources

Link copied to clipboard