myfilter.m 147 B

12345678
  1. Fir=Fir_angle;
  2. angle_off=filter(Fir.Numerator, 1, in);
  3. out=single(angle_off);
  4. t=0:3071;
  5. plot(t, in);
  6. hold;
  7. plot(t-477, out);
  8. out_off=out';