nthroot
Nth root of symbolic numbers
Syntax
Description
Examples
Calculate the nth root of a negative number.
x = sym(-27); n = -3; y = nthroot(x,n)
y =
Check that the answer solves the equation .
y^n
ans =
Calculate the nth root of a complex number.
x = sym(1 + 1i); y = nthroot(x,4)
y =
Find a numeric equivalent of the root.
vpa(y)
ans =
Check that the answer solves the equation .
y^4
ans =
Calculate the nth roots of an array.
x = sym([-27,-8,-4
27,64,-12])x =
n = sym([3,3,4
3,2,-2])n =
y = nthroot(x,n)
y =
Check that the answer solves the equation .
y.^n
ans =
Use nthroot in further symbolic calculations.
syms x
y = solve(nthroot(x,-3) == -3, x)y =
syms x n y = diff(nthroot(x,n),x)
y =
Input Arguments
Input array for taking root, specified as a symbolic or numeric array. When taking the root, the function acts element-wise.
If both x and n are nonscalar arrays, they
must have the same size. If any element of x or n
is symbolic and some elements are numeric, nthroot converts numeric
arguments to symbolic before processing.
Example: [sym(-8),sym(8);sym(-27),sym(27)]
Input array for order of root, specified as a symbolic array or real array.
If an element of
xis not real and positive, meaning it is either negative or has a nonzero imaginary part, then the corresponding element ofnmust be a nonzero integer.If an element of
xis real and positive, then the corresponding element ofncan have any nonzero real value.
If both x and n are nonscalar arrays, they
must have the same size. If any element of x or n
are symbolic and some elements are numeric, nthroot converts numeric
arguments to symbolic before processing.
Example: sym(-3)
Version History
Introduced in R2018b
See Also
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Sélectionner un site web
Choisissez un site web pour accéder au contenu traduit dans votre langue (lorsqu'il est disponible) et voir les événements et les offres locales. D’après votre position, nous vous recommandons de sélectionner la région suivante : .
Vous pouvez également sélectionner un site web dans la liste suivante :
Comment optimiser les performances du site
Pour optimiser les performances du site, sélectionnez la région Chine (en chinois ou en anglais). Les sites de MathWorks pour les autres pays ne sont pas optimisés pour les visites provenant de votre région.
Amériques
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)