|
|
|
|
|
by cdavid
4693 days ago
|
|
Numpy does not depend on LINPACK, only scipy does (numpy only uses blas if you have one installed, it is optional). The reason why scipy (and Julia BTW) need blas/lapack is because that's the only way to have decent performance and reasonably accurate linear algebra. The alternative is writing your own implementation of something that has been used and debugged for 30 years, which does not seem like a good idea. |
|