wxMaxima cheatsheet
Ming Sun / December 25, 2022
3 min read • ––– views
Define functions
- Eg. 1
- Eg. 2
Plot equations
- Eg. 1
- Eg. 2
Text
Greek letters
Usage: press esc
key and then enter the greek letter name
Greek letters in wxMaxima.
Taylor series
Markdown support
The Markdown text is as shown in Fig. 7.
Animation
- Eg. 1
with_slider_draw(
f,[1,2,3,4,5,6,7,10],
title=concat("f=",f,"Hz"),
explicit(
sin(2*%pi*f*x),
x,0,1
),grid=true
);
- Eg. 2
wxanimate_autoplay:true;
wxanimate_framerate:20;
with_slider_draw3d(
α,makelist(i,i,1,360,3),
title=sconcat("α=",α),
surface_hide=true,
contour=both,
view=[60,α],
explicit(
sin(x)*sin(y),
x,-π,π,
y,-π,π
)
);
- Eg. 3
wxanimate(a, 10,
sin(a*x), [x,-5,5]), wxanimate_framerate=1;