Question: Get values from dsolve

Hi All,

Im solving a system of five second order differential equations, dsys, with five degrees of freedom, using the command:

> Sol := dsolve({dsys, ini}, {phix(t), phiy(t), phiz(t), thetax(t), thetay(t)}, numeric, output = listprocedure, range = 0 .. ts)

This solves the system with initial conditions ini from t=0..ts. 

With the command: > odeplot(Eq75, [t, Z2], 0 .. ts, numpoints = 100), I plot Z2, which is a function of the degrees of freedom, form t=0..ts.

 

Now I want to store the value of Z2 at t=ts in a matrix. How do I call uppon this Z2(ts)?

I tried several things like:

> Z2(ts) 

but this doesnt work. Please advice.

 

Kind regards,

Gerben Smit

Please Wait...