Skip to content

Latest commit

 

History

History
76 lines (50 loc) · 2.86 KB

File metadata and controls

76 lines (50 loc) · 2.86 KB

Plotting graphs and functions

Examples

These are some functions integrated in Symja, which allow the output of a graphical "JavaScript control".

Here are some corresponding examples:

>> ListLinePlot(Table({n, n ^ 0.5}, {n, 10})) 
		
>> Manipulate(ListPlot(Table({Sin(t), Cos(t*a)}, {t, 100})), {a,1,4,1})
		
>> Manipulate(ListPointPlot3D(Table({Sin(t), Cos(t*a), Cos(t^2) }, {t, 500})), {a,1,4,1})
		
>> Manipulate(Plot3D(Sin(a*x*y), {x, -1.5, 1.5}, {y, -1.5, 1.5}), {a,1,5})
		
>> ParametricPlot({Sin(t), Cos(t^2)}, {t, 0, 2*Pi}) 
		
>> Plot(Sin(x)*Cos(1 + x), {x, 0, 2*Pi})

>> Graphics3D({Darker(Yellow), Sphere({{-1, 0, 0}, {1, 0, 0}, {0, 0, Sqrt(3.0)}}, 1)})

The following example displays an undirected weighted Graph from graph theory functions:

>> Graph({1 <-> 2, 2 <-> 3, 3 <-> 4, 4 <-> 1},{EdgeWeight->{2.0,3.0,4.0, 5.0}})   

TreeForm visualizes the structure of an expression:

>> TreeForm(a+(b*q*s)^(2*y)+Sin(c)^(3-z)) 

Used JavaScript libraries

For the generation of these controls, Symja uses the following JavaScript libraries

  • Math for evaluating common mathematical operations in JavaScript
  • JSXGraph for interactive function plotting and charting
  • MathCell for displaying 3D function plots
  • vis-network for (graph) network views

You can get the HTML source code of the generated controls in most browser by doing a right-mouse-click on the control and selecting menu: This Frame -> View Frame Source and save the HTML source code as standalone example on your file system.

Generating JavaScript output

If you would like to use the output from the plot or graph functions in your own web pages, you can generate the JavaScript source code with the JSForm function.

You can for example display the generated JavaScript form of the Manipulate function:

>> Manipulate(Plot(Sin(x)*Cos(1 + a*x), {x, 0, 2*Pi}), {a,0,10}) // JSForm

and insert it in a HTML template from the JSXGraph.org project.