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