Re: Selecting Rows Where All Columns Satisfy a Condition
- To: mathgroup at smc.vnet.net
- Subject: [mg82621] Re: Selecting Rows Where All Columns Satisfy a Condition
- From: yatesd at mac.com
- Date: Fri, 26 Oct 2007 05:24:58 -0400 (EDT)
- References: <ffppu6$l6g$1@smc.vnet.net>
Here are two possibilities: Select[X, ! MemberQ[#, -9. | -9] &] Select[m, And @@ Thread[# != -9] &] Regards, Derek