Systems of differential equations: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) No edit summary |
A WASSERMANN (talk | contribs) No edit summary |
||
Line 27: | Line 27: | ||
} | } | ||
var g1 = brd.createElement('curve', [[0],[0]], {strokeColor:'red', strokeWidth:'2px', name:' | var g1 = brd.createElement('curve', [[0],[0]], {strokeColor:'red', strokeWidth:'2px', name:'<p>y_1', withLabel:true}); | ||
var g2 = brd.createElement('curve', [[0],[0]], {strokeColor:'black', strokeWidth:'2px', name:' | var g2 = brd.createElement('curve', [[0],[0]], {strokeColor:'black', strokeWidth:'2px', name:'<p>y_2', withLabel:true}); | ||
g1.updateDataArray = function() { | g1.updateDataArray = function() { | ||
var data = ode(); | var data = ode(); |
Revision as of 08:53, 21 July 2010
Display solutions of the ordinary differential equation
- [math]\displaystyle{ y_1'= f_1(x,y_1,y_2) }[/math]
- [math]\displaystyle{ y_2'= f_2(x,y_1,y_2) }[/math]
with initial values [math]\displaystyle{ (x_0,c_1) }[/math], [math]\displaystyle{ (x_0,c_2) }[/math].