This commit is contained in:
Iaroslav Postovalov 2021-02-19 17:33:20 +07:00
parent 69cdfc9500
commit ef97386033
No known key found for this signature in database
GPG Key ID: 46E15E4A31B3BCD7

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
/**
* Gets a feature from the matrix. This function may return some additional features than
* [kscience.kmath.structures.NDStructure.getFeature].
* Gets a feature from the matrix. This function may return some additional features to
* [kscience.kmath.nd.NDStructure.getFeature].
*
* @param F the type of feature.
* @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
* [kscience.kmath.structures.NDStructure.getFeature].
* Gets a feature from the matrix. This function may return some additional features to
* [kscience.kmath.nd.NDStructure.getFeature].
*
* @param T the type of items in the matrices.
* @param M the type of operated matrices.