functional programming
- To: mathgroup at smc.vnet.net
- Subject: [mg75132] functional programming
- From: Raj <rajanikanth at gmail.com>
- Date: Wed, 18 Apr 2007 05:00:19 -0400 (EDT)
Could somebody tell me how to do this tsome = {{35, 38}, {2064, 2068}, {2182, 2183}}; Select[tsome, 1280 - 1281 =E2=89=A4 #[[2]] =E2=89=A4 1280 &] Now instead of using 1280 in the Select function, I want to use a variable and get the values as this variable varies. I know that a Table can be used and the value of the variable can be varied. But if possible, I want to do it in a "Truly functional way". for example something like Select[tsom, var-1281<=#[[2]]<=1280&]&/@{list of values over which the variable varies} Thanks, Raj
- Follow-Ups:
- Re: functional programming
- From: bsyehuda@gmail.com
- Re: functional programming
- From: Sseziwa Mukasa <mukasa@jeol.com>
- Re: functional programming