Tagged Questions
5
votes
1answer
396 views
Help with symplectic integrators
I'm trying to develop a physics simulation and I want to implement a fourth-order symplectic integration method. The problem is that I must be getting the math wrong, since my simulation is not ...
2
votes
1answer
295 views
how to do a program to solve three functions using improve euler's method?
I was given three functions:
dx/dt = a(y-x)
dy/dt = x(b-z)-y
dz/dt = xy-cz
All the variables are set by the user. I can do it if its just the basic one-equation problem. But now, i need to make a ...
1
vote
3answers
414 views
MATLAB: Question about minimizing a function containing an integral
Does anyone know how to minimize a function containing an integral in MATLAB? The function looks like this:
L = Int(t=0,t=T)[(AR-x)dt], A is a system parameter and R and x are related through:
...