.Modelica.Math.Matrices.LAPACK.dgtsv_vec

Solve real system of linear equations A*x=b with b vector and tridiagonal A

Information

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.

Interface

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;

Generated at 2025-04-10T18:19:57Z by OpenModelicaOpenModelica 1.25.0 using GenerateDoc.mos