Eliminating Imaginary Numbers in an Array

8 vues (au cours des 30 derniers jours)
Andrew
Andrew le 1 Juin 2012
Let's say I have an array,
Array = -1/8:1/16:1/8; so the array should be [-1/8 -1/16 0 1/16 1/8]
and I want to find all the one third powers of all the elements in that array, in another array,
NewArray = Array.^(1/3);
the array should be [-0.5 -0.397 0 0.397 0.5] but matlab gives me imaginary numbers for the negative values. My only idea so far has been to have two seperate arrays, the one third power of all the numbers from 0 to 1/8 to get the positive numbers, and then negative one times the one third power of the double transpose of those same numbers to get the negative numbers. The code gets a little bit messy doing it that way because there is an equal chance that I will need both odd and even numbers at different times for the total number of elements in the negative to positive array. I'm looking for a better and simpler way to do this seemingly simple operation. Thanks!

Réponse acceptée

Teja Muppirala
Teja Muppirala le 1 Juin 2012
Array = [-1/8 -1/16 0 1/16 1/8];
NewArray = nthroot(Array,3)

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by