Same as function LAPACK.dgbsv, but right hand side is a vector and not a matrix. For details of the arguments, see documentation of dgbsv.
pure function dgbsv_vec extends Modelica.Icons.Function; input Integer n "Number of equations"; input Integer kLower "Number of lower bands"; input Integer kUpper "Number of upper bands"; input Real A[2 * kLower + kUpper + 1, n]; input Real b[n]; output Real x[n] = b; output Integer info; end dgbsv_vec;