We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
digitize
geomspace
logspace
Add:
========================= I only could find linspace in this library. The above would be great to have, working with data binning and histograms.
The text was updated successfully, but these errors were encountered:
digitize is in breeze.stats fwiw:
val x = DenseVector[Double](-0.5, 0.5, 1.5, 2, 0, 2.5) val bins = DenseVector[Double](0.0, 1.0, 2.0) val result = digitize(x, bins) val desiredResult = DenseVector[Int](0, 1, 2, 2, 0, 3) assert(result == desiredResult)
Sorry, something went wrong.
No branches or pull requests
Add:
=========================
I only could find linspace in this library. The above would be great to have, working with data binning and histograms.
The text was updated successfully, but these errors were encountered: