|
[Date Index]
[Thread Index]
[Author Index]
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
Prev by Date:
Re: (x|y) \[element] Integers in Reduce function
Next by Date:
Re: What am I doing wrong with this code?
Previous by thread:
Re: Selecting Rows Where All Columns Satisfy a Condition
Next by thread:
Re: Selecting Rows Where All Columns Satisfy a Condition
|