Monthly Archives: October 2014

Lapack Java SGBTRF and SGBTRS

A sample code in Java, as a memo of the correct indexing (row/col): import org.netlib.lapack.Sgbtrf; import org.netlib.lapack.Sgbtrs; /* Purpose: We want to use the LAPACK routines SGBTRF and SGBTRS to solve a banded linear system of the form A*x=b. Our … Continue reading

Posted in programming | Leave a comment