/* [wxMaxima batch file version 1] [ DO NOT EDIT BY HAND! ]*/ /* [ Created with wxMaxima version 12.04.0 ] */ /* [wxMaxima: comment start ] Plot special functions. Let's do the bessel function: bessel_j(n,x), n=0,1,2. You can get a list of special functions by typing ?? special and selecting one of the choices. [wxMaxima: comment end ] */ /* [wxMaxima: input start ] */ bessel_j(0,1.0); /* [wxMaxima: input end ] */ /* [wxMaxima: comment start ] We plot multiple values by putting them in a list, e.g. [f1(x), f2(x), f3(x)] [wxMaxima: comment end ] */ /* [wxMaxima: input start ] */ wxplot2d([bessel_j(0,x),bessel_j(1,x),bessel_j(2,x)], [x, 0, 20]); /* [wxMaxima: input end ] */ /* Maxima can't load/batch files which end with a comment! */ "Created with wxMaxima"$