[R] While with 2 conditions

2009-02-27 Thread MarcioRibeiro
Hi listers, I check it out at the messages... But I didn't find how do I use the while with 2 conditions... while (a1 ? b1){ a-2 b-2 } Should I use what... Thanks in advance, Marcio -- View this message in context: http://www.nabble.com/While-with-2-conditions-tp22252945p22252945.html Sent

Re: [R] While with 2 conditions

2009-02-27 Thread Ted Harding
On 27-Feb-09 19:37:50, MarcioRibeiro wrote: Hi listers, I check it out at the messages... But I didn't find how do I use the while with 2 conditions... while (a1 ? b1){ a-2 b-2 } Should I use what... Thanks in advance, Marcio while((a1)(b1)){ a-2 b-2 } is the way to combine