dpb
Posts:
9,850
Registered:
6/7/07
|
|
Re: Removing a range from an array
Posted:
Oct 20, 2013 11:34 AM
|
|
On 10/19/2013 1:10 PM, dpb wrote: > On 10/19/2013 1:08 PM, dpb wrote: > ... > >> y=x(iswithin(x,22.5,67.5) & iswithin(x,202.5,247.5)); >> > ERRATUM: > > y=x(iswithin(x,22.5,67.5) | iswithin(x,202.5,247.5)); > > Need 'or', not 'and' >
ADDENDUM:
Or, conversely, if don't need the original input any longer eliminate the converse...
x(~(iswithin(x,22.5,67.5) | iswithin(x,202.5,247.5)))=[];
Hopefully I counted/matched paren's correctly... :)
--
|
|