Displaying 1 result from an estimated 1 matches for "tp20928790p20929535".
2008 Dec 09
3
== operand
Hi,
I am trying to compare two values using "==" operand, please take a look of the following example (I copied ALL what I did here without deleting any line)
> bb<-1
> cc<-50
> cc==abs(bb+52)
[1] FALSE
> C<-53
> C<-53
> c<-53
> cc==abs(bb+52)
[1] FALSE
I am expecting to see a TRUE here. Then I tried another way,
> abs(1+52)