// file:e: $warren/research/exp_001/filt_cstr_02.cc // version: // #include "Filter.h" // method: constructor // // arguments: VectorFloat& ma_coef (input) vector of filter coefficients // VectorFloat& ma_lag (input) vector of . . . // // return: none // Filter :: Filter(VectorFloat& ma_coef, VectorLong& ma_lag) { // initialize protected members ma_coef and ma_lag // ma_coef_d.assign(ma_coef); ma_lag_d.assign(ma_lag); }