Drop koma module, implement kmath-ejml module copying it, but for EJML SimpleMatrix #136

Merged
CommanderTvis merged 24 commits from ejml into dev 2020-10-01 21:30:40 +03:00
Showing only changes of commit 5910c587e2 - Show all commits

View File

@ -39,13 +39,13 @@ public class EjmlMatrix(public val origin: SimpleMatrix, features: Set<MatrixFea
)
}
override val l: FeaturedMatrix<Double>
public override val l: FeaturedMatrix<Double>
get() = lup.second
override val u: FeaturedMatrix<Double>
public override val u: FeaturedMatrix<Double>
get() = lup.third
override val p: FeaturedMatrix<Double>
public override val p: FeaturedMatrix<Double>
get() = lup.first
}
) union features.orEmpty()