import streamit.*; /** Character Unit delay **/ class Delay_N extends Filter { float[] state; int N; int place_holder; public Delay_N(int N) { super(N); } public void init(int N) { // initial state of delay is 0 state=new float[N]; this.N=N; for (int i=0; i