SolveTVandermondeSystem

Prototype

void SolveTVandermondeSystem( Matrix v, Matrix b )

Parameters

Matrix v
A vector with unique entries that defines the transpose of a Vandermonde matrix.

Matrix b
A vector representing the right-hand side of the linear system you want to solve. Upon return, this parameter is overwritten with the solution vector.

Remarks

This module solves the linear system U x = b where U is the transpose of the nonsingular Vandermonde matrix generated from the vector v. The algorithm overwrites vector b with the solution vector x.

Example
v = { 1, -2, -3 };
b = { 0, 3, 4 };
run SolveTVandermondeSystem( v, b );
print b;
See Also

CreateVandermondeMatrix
SolveVandermondeSystem