Question: Export to Excel with a Matrix--->not sure of the code

Hi all,

I am assuming this is a pretty easy thing to do. I am solving a system of differential equations, and then want to export my results to maple. I basically want the solution to the system for 40 time steps (counting by 5).

By hand this is

> sol1c5 := dsolve([Eq1, Eq2, Eq3a, R(0) = 49200, H(0) = 4879, W(0) = 55800], numeric, method = rosenbrock);
proc(x_rosenbrock)  ...  end;
> sol1c5(5);
      [t = 5., H(t) = 4884.64746408831252, R(t) = 49200.0000000000146,
        W(t) = 56204.2638309746690]
> sol1c5(10);
     [t = 10., H(t) = 4890.21787230145492, R(t) = 49200.0000000000073, W(t) = 56639.2026676054084]
> sol1c5(15);
[t = 15., H(t) = 4895.70516610440972, R(t) = 49200., W(t) = 57109.8736980330868]
> sol1c5(20);
[t = 20., H(t) = 4901.10221342914065, R(t) = 49200., W(t) = 57622.2229653198738 ]

How can I put the results in a matrix that can then be exported to excel?

Thanks for your help!

-Steve


 

 

Please Wait...