serilas

96 Reputation

4 Badges

15 years, 156 days

MaplePrimes Activity


These are questions asked by serilas

I need to find value of integrals ratio:

int(f2(t),t=0..5.5)/int(f1(t),t=0..5.5),

where the functions f1(t), f2(t) are result of numerical solution of differential equations system:

> restart; with(plots):
> sys:=diff(f1(t),t)=piecewise(t<=4,3*exp(-2*t),-1),
diff(f2(t),t)=sin(t):
init:= f1(0)=1, f2(0)=1:
> F:=dsolve({sys,init}, {f1(t), f2(t)}, numeric);
> Result:=odeplot(F, [[t,f1(t)],[t,f2(t)]], 0..5.5):
> display(Result);

Would You help me? How to export results (numeric data) from Maple to program Origin after solving system of ordinary differential equations by odeplot– function?

1 2 Page 2 of 2