I am trying to plot two functions (two differential equations) in Maxima using the wxdrawdf() function, my code is wrong because I get the following error when I try running it
2D graphic object not recognized, *
The two functions I am trying to plot are (x^2-4)(y+2) and (x-1)(y^2-9) My implementation of the wxdrawf() is
load(drawdf);
wxdrawdf((x^2-4)*(y+2),(x-1)*(y^2-9),field_arrow=true, [trajectory_at, 1,-2], [trajectory_at, 2,3], [trajectory_at, 2,-3], [trajectory_at, -2,3], [trajectory_at, -2,-3] )$