f_x = (x3 - x2 + 3x + 4) / (x2 - 4x + 3) plot(f_x, (x, 0, 4), detect_poles=True, ymin=-100, ymax=100)
Running this code results in a graph with a max y of about 500000. What am I doing wrong? The x-axis is limited, as I want, in the range 0 to 4.
1 | initial version |
f_x = (x3 - x2 + 3x + 4) / (x2 - 4x + 3) plot(f_x, (x, 0, 4), detect_poles=True, ymin=-100, ymax=100)
Running this code results in a graph with a max y of about 500000. What am I doing wrong? The x-axis is limited, as I want, in the range 0 to 4.
f_x = (x3 - x2 + 3x + 4) / (x2 - 4x + 3) plot(f_x, (x, 0, 4), detect_poles=True, ymin=-100, ymax=100)
Running this code results in a graph with a max y of about 500000. 500000.
What am I doing wrong? The x-axis is limited, as I want, in the range 0 to 4.
Running this code
f_x = (x3 (x**3 - x2 x**2 + 3x 3*x + 4) / (x2 (x**2 - 4x 4*x + 3)
plot(f_x, (x, 0, 4), detect_poles=True, ymin=-100, ymax=100)ymax=100)
Running this code results in a graph with a max y of about 500000.
500000.
What am I doing wrong? The x-axis is limited, as I want, in the range 0 to 4.