Hi, I have
B = {1.3, 1.5, 1.6, 1.6, 1.7};
and
geo = {{0.099, 0.199, 0.286, 0.374, 0.452, 0.529},
{ 0.598, 0.666, 0.75, 0.833, 0.916, 1.},
{ 1.083, 1.166, 1.25, 1.333, 1.4, 1.466},
{ 1.533, 1.6, 1.66, 1.73, 1.8, 1.86},{ 1.93, 2., 2.08, 2.166, 2.25, 2.33, 2.41}}
I'd like SELECT in geo[[1]] the values < B[[1]], in geo [[2]] the values < B[[2]], in geo [[3]] the values < B[[3]] and so on. So if i use this command
Select[#, # <= B[[#]] &] & /@ geo
or
Select[#, # <= B &] & /@ geo
It doesn't run.
Someone could help me? Please?
Thank you. Margherita