Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does Maxima give me an error on plot2d when trying to draw a parametric graph?

I am trying to draw a parametric graph in Maxima. The code I enter is this:

wxplot2d([parametric, t^2/(t-1), t/(t^2-1), [t, 0, 2*%pi], [nticks, 300]]);

But I get the following error:

plot2d: parametric plots must include two expressions and an interval
 -- an error. To debug this try: debugmode(true);

Can someone tell me what's wrong, since it does include two expressions and an interval?

like image 483
Sophia Avatar asked Jan 20 '26 04:01

Sophia


1 Answers

You have a small error. It should be

wxplot2d([parametric, t^2/(t-1), t/(t^2-1), [t, 0, 2*%pi]], [nticks, 300]);
like image 116
slitvinov Avatar answered Jan 22 '26 11:01

slitvinov



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!