RADICAL

バージョン 1.0.0.0 (857 Bytes) 作成者: Mukhtar Ullah
Real specified roots of real array.
ダウンロード: 1.8K
更新 2004/12/14

ライセンスがありません

RADICAL Real specified roots of real array.

Y = RADICAL(X, N) returns the real roots of polynomials Y.^N - X .
Elements of N that correspond to negative elements of X must be odd
integers.
X and N must have the same dimensions unless one is a scalar.
A scalar can operate into anything.

See also realpow, nthroot

Example:
>> x = [-1 -64 81; 32 0 49; 0 1 0]; n = [3 3 4; 5 2 2; 0 0 inf];
>> radical(x,n)

ans =

-1 -4 3
2 0 7
NaN 1 1

RADICAL is a replacement for NTHROOT which is famous for bugs.

引用

Mukhtar Ullah (2024). RADICAL (https://www.mathworks.com/matlabcentral/fileexchange/6171-radical), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R14
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersLogical についてさらに検索
タグ タグを追加

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
バージョン 公開済み リリース ノート
1.0.0.0

rewritten to avoid the function nonzeros of Matlab 7