MATLAB: Roots of complex numbers

complex numbers roots

trying to find all possible roots of the following;
[125/2(1-sqrt(3i))]^1/3
tried the below, but keep getting error;
is not a valid expression or equation
s_o_l_v_e=double(solve('((125/2)(1-sqrt(3i)))^1/3'));

Best Answer

Harley, use
sol = ((125/2)*(1-sqrt(3i)))^1/3
There is no need to do it symbolically.
Related Question