different colors mean 6 equations for y[0], y[1], y[2], y[3], y[4], y[5]
I just want to integrate them and get px, py, pz, x, y, and z. And then use x, y, and z to
draw trajectory of the particle.
# -*- coding: utf-8 -*-
from scipy.integrate import odeint
import numpy as np
from pylab import *...