scipy: _flapack.error in when using eigh #164827
Labels
bug
Reproducible Homebrew/homebrew-core bug
outdated
PR was locked due to age
upstream issue
An upstream issue report is needed
brew gist-logs <formula>
link ORbrew config
ANDbrew doctor
outputVerification
brew doctor
output" saysYour system is ready to brew.
and am still able to reproduce my issue.brew update
and am still able to reproduce my issue.brew doctor
and that did not fix my problem.What were you trying to do (and why)?
I tried to diagonalize a small matrix using scipy.
So I ran the command
python3.12 -c "from scipy import linalg;linalg.eigh([[1]])"
What happened (include all command output)?
It outputs
What did you expect to happen?
When I install scipy with pip I do get an error.
When running
python3.12 -c "from scipy import linalg;print(linalg.eigh([[1]]))"
I get(array([1.]), array([[1.]]))
as expected.
Step-by-step reproduction instructions (by running
brew
commands)brew install scipy python3.12 -c "from scipy import linalg;linalg.eigh([[1]])"
The text was updated successfully, but these errors were encountered: