dpb
Posts:
9,850
Registered:
6/7/07
|
|
Re: matlab version and "for" loops
Posted:
Jan 26, 2013 11:44 PM
|
|
On 1/26/2013 4:50 PM, Jessica wrote: > "Jessica " <jly5@duke.edu> wrote in message > <kdmql8$n4i$1@newscl01ah.mathworks.com>... >> "Bruno Luong" <b.luong@fogale.findmycountry> wrote in message >> <kdlt80$st0$1@newscl01ah.mathworks.com>... ...
>> > Data(delete) = [] ...
> And, one other question. If I want to do the same as above except delete > based on numbers, how would I do that? If I do: > > delete_b = GazeType(GazeType>10) > > it only lists the numbers that are greater than 10 and I therefore > cannot delete those rows.
Generalize the rule Bruno illustrated--
GazeType(GazeType>10)=[];
--
|
|