yafrl
Toggle table of contents
0.4-SNAPSHOT
common
Platform filter
common
Home
Documentation
Tutorials
GitHub
Switch theme
Search in API
yafrl
yafrl-core
/
io.github.yafrl.vector
/
VectorSpace
Vector
Space
interface
VectorSpace
<
V
>
(
source
)
Abstraction for a vector space over the real numbers.
Inheritors
Sum
Members
Types
Companion
Link copied to clipboard
object
Companion
Properties
zero
Link copied to clipboard
abstract
val
zero
:
V
Functions
div
Link copied to clipboard
abstract
operator
fun
V
.
div
(
value
:
Number
)
:
V
minus
Link copied to clipboard
abstract
operator
fun
V
.
minus
(
other
:
V
)
:
V
plus
Link copied to clipboard
abstract
operator
fun
V
.
plus
(
other
:
V
)
:
V
times
Link copied to clipboard
abstract
operator
fun
V
.
times
(
value
:
Number
)
:
V
abstract
operator
fun
Number
.
times
(
vect
:
V
)
:
V
with
Link copied to clipboard
open
fun
with
(
accum
:
(
V
,
V
)
->
V
)
:
VectorSpace
<
V
>