为什么Maxima在尝试绘制参数化图形时在plot2d上给我一个错误?

为什么Maxima在尝试绘制参数化图形时在plot2d上给我一个错误?,plot,graph,drawing,draw,maxima,Plot,Graph,Drawing,Draw,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]]);
但我得到了以下错误:

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]);