Raising a negative value to a fraction power?
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I am rasing a negative value to a fraction power. Depending on how I write the operation (putting the negative value in parenthesis or not), the answer changes (see below)? Am I missing something?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/426173/image.jpeg)
0 Commenti
Risposta accettata
Alan Stevens
il 24 Nov 2020
Exponentiation has a higher priority than negation, so -2^1.2 is -(2^1.2), this results in a negative real. On the other had (-2)^1.2 raises a negative number to a fractional power, because parentheses take priority over exponentiation, and the result is a complex number.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrix Indexing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!