COMPLEXROOTS

COMPLEXROOTS(X, N) returns all (N) complex Nth roots of X.
ダウンロード: 378
更新 2011/1/1

ライセンスの表示

R = COMPLEXROOTS(X,N) returns all (N) complex Nth roots of X.
X can be a real or a complex number, or an array of such numbers; N must be a natural number.
If X is scalar, COMPLEXROOTS(X, N) is a 1*N vector
with all complex Nth roots of X.
If X is a vector of length M, COMPLEXROOTS(X, N) is a M*N matrix
with all complex Nth roots of X along the second dimension.
If X is an array of dimension D, COMPLEXROOTS(X, N) is an array
of dimension D+1 with all complex Nth roots of the elements of X
along the last dimension.
To cross-check the result: complexroots(x,n).^n
To plot the result in the complex plane (for scalar X):
plot(real(r),imag(r),'.'), a=1.2*abs(r(1)); axis([-a a -a a]),grid on

引用

Bernhard Stroebel (2026). COMPLEXROOTS (https://jp.mathworks.com/matlabcentral/fileexchange/29660-complexroots), MATLAB Central File Exchange. 取得日: .

MATLAB リリースの互換性
作成: R2006b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersData Distribution Plots についてさらに検索
バージョン 公開済み リリース ノート
1.2.0.0

Now completed with two examples and a check for correct input.

1.1.0.0

no more singleton dimensions for scalar or vector X

1.0.0.0