Suppose you have two vectors X and Y and you want to graph only those points that lie within the unit circle, that is, that satisfy SQRT(X^2+Y^2)<=1 IDX=WHERE(SQRT(X^2+Y^2)<=1) GRAPH X(IDX) Y(IDX)