functionsolveBandedWithMatrix
Solve linear system with banded system matrix and right hand side matrix (similar to Modelica.Matrices.solve)
Extends from Modelica.Icons.Function (Icon for functions).
Information
## Copyright © EDF 2002 - 2025 ## ThermoSysPro Version 4.2
Inputs
| Type | Name | Default | Description |
|---|---|---|---|
| Integer | kLower | Number of lower bands | |
| Integer | kUpper | Number of upper bands | |
| Real[2*kLower + kUpper + 1,:] | A | Matrix A of A*X = B | |
| Real[size(A, 2),:] | B | Matrix B of A*X = B |
Outputs
| Type | Name | Default | Description |
|---|---|---|---|
| Real[size(A, 2),size(B, 2)] | X | B | Matrix X such that A*X = B |
| Integer | info |