Eliminating Imaginary Numbers in an Array

조회 수: 9 (최근 30일)
Andrew
Andrew 2012년 6월 1일
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!

채택된 답변

Teja Muppirala
Teja Muppirala 2012년 6월 1일
Array = [-1/8 -1/16 0 1/16 1/8];
NewArray = nthroot(Array,3)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by