torch.vander#
- torch.vander(x,N=None,increasing=False)→Tensor#
Generates a Vandermonde matrix.
The columns of the output matrix are elementwise powers of the input vector.If increasing is True, the order of the columns is reversed. Such amatrix with a geometric progression in each row is named for Alexandre-Theophile Vandermonde.
- Parameters
- Returns
Vandermonde matrix. If increasing is False, the first column is,the second and so forth. If increasing is True, the columnsare.
- Return type
Example:
>>>x=torch.tensor([1,2,3,5])>>>torch.vander(x)tensor([[ 1, 1, 1, 1], [ 8, 4, 2, 1], [ 27, 9, 3, 1], [125, 25, 5, 1]])>>>torch.vander(x,N=3)tensor([[ 1, 1, 1], [ 4, 2, 1], [ 9, 3, 1], [25, 5, 1]])>>>torch.vander(x,N=3,increasing=True)tensor([[ 1, 1, 1], [ 1, 2, 4], [ 1, 3, 9], [ 1, 5, 25]])