Try it. Does it help?
static void Main() { var bb = new List<double> { 1, 2, 3, 4 }; var xx = new List<double> { 3, 3, 4, 5 }; var yy = func_FIR(bb, xx); for (int i = 0; i < yy.Count; i++) { Console.WriteLine("y[{0}] = {1}",i,yy[i]); } } public static List<double> func_FIR(List<double> b, List<double> x) {
source share