vandermonde.matrix {matrixcalc} | R Documentation |
Vandermonde matrix
Description
This function returns an m by n matrix of the powers of the alpha vector
Usage
vandermonde.matrix(alpha, n)
Arguments
alpha |
A numerical vector of values |
n |
The column dimension of the Vandermonde matrix |
Details
In linear algebra, a Vandermonde matrix is an matrix with terms
of a geometric progression of an
parameter vector
such that .
Value
A matrix.
Author(s)
Frederick Novomestky fnovomes@poly.edu
References
Horn, R. A. and C. R. Johnson (1991). Topics in matrix analysis, Cambridge University Press.
Examples
alpha <- c( .1, .2, .3, .4 )
V <- vandermonde.matrix( alpha, 4 )
print( V )
[Package matrixcalc version 1.0-6 Index]