Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
nthroot
実数のn番目の実根
呼び出し手順
y=ntrhoot(x,n)
引数
- x
実数,スカラーまたはベクトル/行列
- n
実数スカラーまたはベクトル/行列
説明
nthroot(x,n)
は,x
要素のn番目の根の実数
ベクトル/行列です.x
が負の要素を有する場合,
n
は奇数とする必要があります.
n
がスカラーではない場合,
関数は要素毎に処理します.
例
nthroot(2, 3) nthroot(-2, 3) nthroot(-2, -3) nthroot(2, -3) nthroot([27 27], 3) nthroot([27 256], [3 4]) nthroot([27 256; 3125 46656], [3 4; 5 6])
Report an issue | ||
<< logm | Exponential | polar >> |