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