Chapman Math: ASCIIsvg Sandbox

ASCIIsvg Sandbox

HomePage | RecentChanges | Preferences

On this page you can try out the [ASCIIsvg] commands (simplified SVG syntax via JavaScript). For mathematical notation, one can also use [ASCIIMathML] on this page.


Parametric graph of a spiral

A graph of `x^3-x`

A graph with 8 vertices

Animation
<script>
var aktiv = window.setInterval("update()", 1000);
a=0;b=+1;
function update() {
  plot(function (x){return a*x*x-x},"quadratic")
  a=a+0.1*b;
  if ((a*a)>10) b=-b;
}
</script>
Works great! (src="d.svg" does not work on this wiki) Thanks. -- Peter

HomePage | RecentChanges | Preferences
This page is read-only | View other revisions
Last edited April 21, 2006 9:24 am (diff)
Search: