Same as function LAPACK.dgtsv, but right hand side is a vector and not a matrix. For details of the arguments, see documentation of dgtsv.
pure function dgtsv_vec extends Modelica.Icons.Function; input Real superdiag[:]; input Real diag[size(superdiag, 1) + 1]; input Real subdiag[size(superdiag, 1)]; input Real b[size(diag, 1)]; output Real x[size(b, 1)] = b; output Integer info; end dgtsv_vec;