为什么 Maxima 在尝试绘制参数图时在 plot2d 上给我一个错误?
Why does Maxima give me an error on plot2d when trying to draw a parametric graph?
我正在尝试在 Maxima 中绘制参数图。我输入的代码是这样的:
wxplot2d([parametric, t^2/(t-1), t/(t^2-1), [t, 0, 2*%pi], [nticks, 300]]);
但我收到以下错误:
plot2d: parametric plots must include two expressions and an interval
-- an error. To debug this try: debugmode(true);
谁能告诉我哪里出了问题,因为它包含两个表达式和一个区间?
你有一个小错误。应该是
wxplot2d([parametric, t^2/(t-1), t/(t^2-1), [t, 0, 2*%pi]], [nticks, 300]);
我正在尝试在 Maxima 中绘制参数图。我输入的代码是这样的:
wxplot2d([parametric, t^2/(t-1), t/(t^2-1), [t, 0, 2*%pi], [nticks, 300]]);
但我收到以下错误:
plot2d: parametric plots must include two expressions and an interval
-- an error. To debug this try: debugmode(true);
谁能告诉我哪里出了问题,因为它包含两个表达式和一个区间?
你有一个小错误。应该是
wxplot2d([parametric, t^2/(t-1), t/(t^2-1), [t, 0, 2*%pi]], [nticks, 300]);