Kone
Toggle table of contents
0.0.0-experiment
common
Platform filter
common
Switch theme
Search in API
Kone
kone.linearAlgebra
/
dev.lounres.kone.linearAlgebra
/
SettableRowVector
Settable
Row
Vector
@
Serializable
(
with
=
SettableRowVectorSerializer::class
)
class
SettableRowVector
<
N
>
(
val
coefficients
:
SettableMDList1
<
N
>
)
:
RowVector
<
N
>
(
source
)
Members
Members & Extensions
Constructors
Settable
Row
Vector
Link copied to clipboard
constructor
(
coefficients
:
SettableMDList1
<
N
>
)
Properties
coefficients
Link copied to clipboard
open
override
val
coefficients
:
SettableMDList1
<
N
>
indices
Link copied to clipboard
val
RowVector
<
*
>
.
indices
:
UIntRange
size
Link copied to clipboard
val
size
:
UInt
Functions
all
Link copied to clipboard
inline
fun
<
E
>
RowVector
<
E
>
.
all
(
block
:
(
value
:
E
)
->
Boolean
)
:
Boolean
all
Indexed
Link copied to clipboard
inline
fun
<
E
>
RowVector
<
E
>
.
allIndexed
(
block
:
(
index
:
UInt
,
value
:
E
)
->
Boolean
)
:
Boolean
any
Link copied to clipboard
inline
fun
<
E
>
RowVector
<
E
>
.
any
(
block
:
(
value
:
E
)
->
Boolean
)
:
Boolean
any
Indexed
Link copied to clipboard
inline
fun
<
E
>
RowVector
<
E
>
.
anyIndexed
(
block
:
(
index
:
UInt
,
value
:
E
)
->
Boolean
)
:
Boolean
fold
Link copied to clipboard
inline
fun
<
E
,
R
>
RowVector
<
E
>
.
fold
(
initial
:
R
,
operation
:
(
acc
:
R
,
E
)
->
R
)
:
R
fold
Indexed
Link copied to clipboard
inline
fun
<
E
,
R
>
RowVector
<
E
>
.
foldIndexed
(
initial
:
R
,
operation
:
(
index
:
UInt
,
acc
:
R
,
E
)
->
R
)
:
R
for
Each
Link copied to clipboard
inline
fun
<
E
>
RowVector
<
E
>
.
forEach
(
block
:
(
value
:
E
)
->
Unit
)
for
Each
Indexed
Link copied to clipboard
inline
fun
<
E
>
RowVector
<
E
>
.
forEachIndexed
(
block
:
(
index
:
UInt
,
value
:
E
)
->
Unit
)
get
Link copied to clipboard
operator
fun
get
(
index
:
UInt
)
:
N
map
Link copied to clipboard
inline
fun
<
E
,
R
>
RowVector
<
E
>
.
map
(
transform
:
(
E
)
->
R
)
:
RowVector
<
R
>
map
Indexed
Link copied to clipboard
inline
fun
<
E
,
R
>
RowVector
<
E
>
.
mapIndexed
(
transform
:
(
index
:
UInt
,
E
)
->
R
)
:
RowVector
<
R
>
minus
Link copied to clipboard
operator
fun
<
N
>
RowVector
<
N
>
.
minus
(
other
:
RowVector
<
N
>
)
:
RowVector
<
N
>
none
Link copied to clipboard
inline
fun
<
E
>
RowVector
<
E
>
.
none
(
block
:
(
value
:
E
)
->
Boolean
)
:
Boolean
none
Indexed
Link copied to clipboard
inline
fun
<
E
>
RowVector
<
E
>
.
noneIndexed
(
block
:
(
index
:
UInt
,
value
:
E
)
->
Boolean
)
:
Boolean
plus
Link copied to clipboard
operator
fun
<
N
>
RowVector
<
N
>
.
plus
(
other
:
RowVector
<
N
>
)
:
RowVector
<
N
>
set
Link copied to clipboard
operator
fun
set
(
index
:
UInt
,
coefficient
:
N
)
sum
Link copied to clipboard
fun
<
E
>
RowVector
<
E
>
.
sum
(
)
:
E
sum
Of
Link copied to clipboard
inline
fun
<
E
,
A
>
RowVector
<
E
>
.
sumOf
(
selector
:
(
E
)
->
A
)
:
A
sum
Of
Indexed
Link copied to clipboard
inline
fun
<
E
,
A
>
RowVector
<
E
>
.
sumOfIndexed
(
selector
:
(
index
:
UInt
,
E
)
->
A
)
:
A
times
Link copied to clipboard
operator
fun
<
N
>
RowVector
<
N
>
.
times
(
other
:
N
)
:
RowVector
<
N
>
operator
fun
<
N
>
RowVector
<
N
>
.
times
(
other
:
ColumnVector
<
N
>
)
:
N
operator
fun
<
N
>
RowVector
<
N
>
.
times
(
other
:
Matrix
<
N
>
)
:
RowVector
<
N
>
to
String
Link copied to clipboard
open
override
fun
toString
(
)
:
String
unary
Minus
Link copied to clipboard
operator
fun
<
N
>
RowVector
<
N
>
.
unaryMinus
(
)
:
RowVector
<
N
>
with
Each
Link copied to clipboard
inline
fun
<
E
>
RowVector
<
E
>
.
withEach
(
block
:
E
.
(
)
->
Unit
)
with
Each
Indexed
Link copied to clipboard
inline
fun
<
E
>
RowVector
<
E
>
.
withEachIndexed
(
block
:
E
.
(
index
:
UInt
)
->
Unit
)