v0.2.0 #206

Merged
altavir merged 210 commits from dev into master 2021-02-21 16:33:25 +03:00
Showing only changes of commit ef97386033 - Show all commits

View File

@ -71,8 +71,8 @@ public interface MatrixContext<T : Any, out M : Matrix<T>> : SpaceOperations<Mat
public operator fun T.times(m: Matrix<T>): M = m * this public operator fun T.times(m: Matrix<T>): M = m * this
/** /**
* Gets a feature from the matrix. This function may return some additional features than * Gets a feature from the matrix. This function may return some additional features to
* [kscience.kmath.structures.NDStructure.getFeature]. * [kscience.kmath.nd.NDStructure.getFeature].
* *
* @param F the type of feature. * @param F the type of feature.
* @param m the matrix. * @param m the matrix.
@ -101,8 +101,8 @@ public interface MatrixContext<T : Any, out M : Matrix<T>> : SpaceOperations<Mat
} }
/** /**
* Gets a feature from the matrix. This function may return some additional features than * Gets a feature from the matrix. This function may return some additional features to
* [kscience.kmath.structures.NDStructure.getFeature]. * [kscience.kmath.nd.NDStructure.getFeature].
* *
* @param T the type of items in the matrices. * @param T the type of items in the matrices.
* @param M the type of operated matrices. * @param M the type of operated matrices.