Update features
This commit is contained in:
parent
1c495759cd
commit
a046f5c060
@ -24,12 +24,10 @@ class EjmlMatrix(val origin: SimpleMatrix, features: Set<MatrixFeature>? = null)
|
|||||||
get() = intArrayOf(origin.numRows(), origin.numCols())
|
get() = intArrayOf(origin.numRows(), origin.numCols())
|
||||||
|
|
||||||
override val features: Set<MatrixFeature> = hashSetOf(
|
override val features: Set<MatrixFeature> = hashSetOf(
|
||||||
object : DeterminantFeature<Double> {
|
object : LUPDecompositionFeature<Double>, DeterminantFeature<Double> {
|
||||||
override val determinant: Double
|
override val determinant: Double
|
||||||
get() = origin.determinant()
|
get() = origin.determinant()
|
||||||
},
|
|
||||||
|
|
||||||
object : LUPDecompositionFeature<Double> {
|
|
||||||
private val lup by lazy {
|
private val lup by lazy {
|
||||||
val ludecompositionF64 = DecompositionFactory_DDRM.lu(origin.numRows(), origin.numCols())
|
val ludecompositionF64 = DecompositionFactory_DDRM.lu(origin.numRows(), origin.numCols())
|
||||||
.also { it.decompose(origin.ddrm.copy()) }
|
.also { it.decompose(origin.ddrm.copy()) }
|
||||||
@ -50,7 +48,7 @@ class EjmlMatrix(val origin: SimpleMatrix, features: Set<MatrixFeature>? = null)
|
|||||||
override val p: FeaturedMatrix<Double>
|
override val p: FeaturedMatrix<Double>
|
||||||
get() = lup.first
|
get() = lup.first
|
||||||
}
|
}
|
||||||
).addAll(features)
|
).addAll(features.orEmpty())
|
||||||
|
|
||||||
override fun suggestFeature(vararg features: MatrixFeature): FeaturedMatrix<Double> =
|
override fun suggestFeature(vararg features: MatrixFeature): FeaturedMatrix<Double> =
|
||||||
EjmlMatrix(origin, this.features + features)
|
EjmlMatrix(origin, this.features + features)
|
||||||
|
Loading…
Reference in New Issue
Block a user