The Vandermonde matrix is a nxn matrix whose row elements are in the form of geometric progression. This matrix has full rank .
Example program :
%% Generate Vandermonde matrix
%% Fundamental Elements
v = 1:.5:2
A = vander(v)
Example program :
%% Generate Vandermonde matrix
%% Fundamental Elements
v = 1:.5:2
A = vander(v)
No comments:
Post a Comment