next up previous contents
Next: minquad Up: Listati Previous: filtra   Contents

posneg

function [ pos,neg ] = posneg( x )

%POSNEG Crescenza e decrescenza

%  pos: campioni in cui dIc/dt>0

%  neg: campioni in cui dIc/dt<0

 

pos=find(x>=0);

neg=find(x<0);



2001-10-22