how to separate positive and negative integer

2 views (last 30 days)
how to separate positive and negative integers
r =
0.0353 + 1.9421i
0.0353 + 1.9428i
0.0353 + 1.9436i
0.0353 + 1.9443i
0.0353 + 1.9450i
0.0353 + 1.9458i
0.0353 + 1.9465i
0.0354 + 1.9472i
0.0354 + 1.9479i
0.0354 + 1.9487i
0.0353 - 1.9421i
0.0353 - 1.9428i
0.0353 - 1.9436i
0.0353 - 1.9443i
0.0353 - 1.9450i
0.0353 - 1.9458i
0.0353 - 1.9465i
0.0354 - 1.9472i
0.0354 - 1.9479i
0.0354 - 1.9487i

Accepted Answer

madhan ravi
madhan ravi on 11 Jun 2020
Positive = r(imag(r)>0)
Negative = r(imag(r)<0)

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!