Re: if with two conditions
- To: mathgroup at smc.vnet.net
- Subject: [mg108796] Re: if with two conditions
- From: Manfred Plagmann <tamariki at mac.com>
- Date: Thu, 1 Apr 2010 05:58:49 -0500 (EST)
Logical operators are && for AND and || for OR etc. Just string your logic together: If[a>b && a>0, ...] The documentation is your friend and will list all logical operators.