/* p4-2a.ch */ #include int main() { array double num[1] = {5}, den[2] = {1, 5}; CControl sys; CPlot plot; sys.model("tf", num, den); sys.grid(1); sys.step(&plot, NULL, NULL, NULL); return 0; }