Skip to content
New issue

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

Bug in elementwise division #371

Closed
rakeshnd opened this issue Feb 23, 2015 · 1 comment
Closed

Bug in elementwise division #371

rakeshnd opened this issue Feb 23, 2015 · 1 comment

Comments

@rakeshnd
Copy link
Contributor

The following seems odd.

scala> 1.0 :/ (DenseMatrix.fill(2,2)(10.0))
res14: breeze.linalg.DenseMatrix[Double] =
10.0  10.0
10.0  10.0

Same thing here

scala> 1.0 / (DenseMatrix.fill(2,2)(10.0))
res15: breeze.linalg.DenseMatrix[Double] =
10.0  10.0
10.0  10.0
@dlwh
Copy link
Member

dlwh commented Feb 25, 2015

that's embarassing I'll try to fix it tonight.

On Sun, Feb 22, 2015 at 9:16 PM, Rakesh Chalasani notifications@github.com
wrote:

The following seems odd.

scala> 1.0 :/ (DenseMatrix.fill(2,2)(10.0))
res14: breeze.linalg.DenseMatrix[Double] =
10.0 10.0
10.0 10.0

Same thing here

scala> 1.0 / (DenseMatrix.fill(2,2)(10.0))
res15: breeze.linalg.DenseMatrix[Double] =
10.0 10.0
10.0 10.0


Reply to this email directly or view it on GitHub
#371.

@dlwh dlwh closed this as completed in 8ed6cde Feb 25, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants