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 2f2315f6cd - Show all commits

View File

@ -65,4 +65,6 @@ class EjmlMatrix(val origin: SimpleMatrix, features: Set<MatrixFeature>? = null)
result = 31 * result + features.hashCode()
return result
}
override fun toString(): String = "EjmlMatrix(origin=$origin, features=$features)"
}