本文簡要介紹python語言中 torch.vander
的用法。
用法:
torch.vander(x, N=None, increasing=False) → Tensor
範德蒙德矩陣。如果增加為 False,則第一列為 ,第二列為 ,依此類推。如果增加為 True,則列為 。
生成範德蒙德矩陣。
輸出矩陣的列是輸入向量 的元素冪。如果增加為 True,則列的順序顛倒 。這種每行都有幾何級數的矩陣被命名為Alexandre-Theophile Vandermonde。
例子:
>>> 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]])
參數:
返回:
返回類型:
相關用法
- Python PyTorch var_mean用法及代碼示例
- Python PyTorch var用法及代碼示例
- Python PyTorch vdot用法及代碼示例
- Python PyTorch view_as_real用法及代碼示例
- Python PyTorch vocab用法及代碼示例
- Python PyTorch view_as_complex用法及代碼示例
- Python PyTorch vsplit用法及代碼示例
- Python PyTorch vstack用法及代碼示例
- Python PyTorch vjp用法及代碼示例
- Python PyTorch verify_skippables用法及代碼示例
- Python PyTorch vector_norm用法及代碼示例
- Python PyTorch vhp用法及代碼示例
- Python PyTorch frexp用法及代碼示例
- Python PyTorch jvp用法及代碼示例
- Python PyTorch cholesky用法及代碼示例
- Python PyTorch ELU用法及代碼示例
- Python PyTorch ScaledDotProduct.__init__用法及代碼示例
- Python PyTorch gumbel_softmax用法及代碼示例
- Python PyTorch get_tokenizer用法及代碼示例
- Python PyTorch saved_tensors_hooks用法及代碼示例
- Python PyTorch positive用法及代碼示例
- Python PyTorch renorm用法及代碼示例
- Python PyTorch AvgPool2d用法及代碼示例
- Python PyTorch MaxUnpool3d用法及代碼示例
- Python PyTorch Bernoulli用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.vander。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。