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