Clear Filters
Clear Filters

&& trouble !

17 views (last 30 days)
Twinkle
Twinkle on 20 Sep 2011
if i make an array of delta(i) such that delta(i)=atan2(x,z) then the code: if ((delta(i)<0) && (delta>=pi)) delta(i)=2*pi+delta(i);
gives error: operands && operators must be convertible to logical scalar values
help me out if u can !
  1 Comment
Jan
Jan on 20 Sep 2011
It is impossible that delta(i) is smaller than zeros *and* greater equal Pi at the same time. Therefore the IF condition is FALSE ever. In addition the reply of ATAN2 is smaller equal Pi ever.

Sign in to comment.

Accepted Answer

Sean de Wolski
Sean de Wolski on 20 Sep 2011
delta is apparently an array with more than one element so in the second part of the conditional delta>pi will also be non-scalar. You probably meant
delta(i)>=pi
  1 Comment
Twinkle
Twinkle on 21 Sep 2011
Yeah..i meant that! got it right now ! Anywayz thanks for your help !

Sign in to comment.

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!