fortran-lapack icon indicating copy to clipboard operation
fortran-lapack copied to clipboard

Modularized Fortran LAPACK implementation

Results 13 fortran-lapack issues
Sort by recently updated
recently updated
newest added

Since the reference Lapack is in Fortran, maybe rename this project to modern-fortran-lapack to distinguish it from the reference Lapack?

I asked ChatGPT o1-preview to create specialized versions of stdlib_dgemm for the cases where the matrix multiplication is done with the original matrix `a` or its transpose. It created `stdlib_dgemm_a_orig`...

R has a [crossprod](https://www.rdocumentation.org/packages/base/versions/3.6.2/topics/crossprod) function. "Given matrices x and y as arguments, return a matrix cross-product. This is formally equivalent to (but usually slightly faster than) the call t(x) %*%...