C# Class csCommon.Types.Geometries.AdvancedGeometry.GeometryTransformers.SmoothBezierTransformer.Tridiagonal

Tridiagonal system solution.
Afficher le fichier Open project: TNOCS/csTouch

Méthodes publiques

Méthode Description
Solve ( double a, double b, double c, double rhs ) : double[]

Solves a tridiagonal system.

All vectors have size of n although some elements are not used.

Method Details

Solve() public static méthode

Solves a tridiagonal system.
All vectors have size of n although some elements are not used.
public static Solve ( double a, double b, double c, double rhs ) : double[]
a double Lower diagonal vector; a[0] not used.
b double Main diagonal vector.
c double Upper diagonal vector; c[n-1] not used.
rhs double Right hand side vector
Résultat double[]