| Author |
Comment/Response |
Andrey
|
03/18/12 12:05pm
Hello!
I have a list of points {{x1,y1,z1},...{xn,yn,zn}}.
I need to take only special points from this list, for example x>1, y<1,z>0. What shall I do?
For example:
in: Select[{{-1, -2, 11}, {3, 0.5, 12}, {5, 6, 13}}, VectorQ[#, # > 1 &] &]
out: {{5, 6, 13}}
But I have deleted here some points with y<1.
Thank you in advance.
URL: , |
|