Question: linestyle and frame

Hi everyone
I am a learner using the maple program and I have a problem drawing multiple lines with different styles. I have tried the following:

restart; with(VectorCalculus); with(LinearAlgebra); with(DEtools);
F0 := 0; zeta := .25; w := 1; Omega := 1; m := 1;

ode1 := diff(x(t), t) = y(t); ode2 := diff(y(t), t) = F0*cos(Omega*t)/m-2*zeta*w*y(t)-w^2*x(t);

DEplot([ode1, ode2], [x(t), y(t)], t = 0 .. 10, x = -100 .. 100, y = -100 .. 100, [[x(0) = 0, y(0) = 50], [x(0) = 9, y(0) = 25], [x(0) = 85, y(0) = 20], [x(0) = .25, y(0) = .5], [x(0) = 7, y(0) = 5]], linestyle = [dash, dashdot, dot, longdash, spacedash], linecolor = [red, green, black, navy, maroon], thickness = 2, axes = normal, labels = [x(t), y(t)], arrows = medium, stepsize = 0.1e-1);

I would like to obtain in the graph that each trajectory has a different type of line.

On the other hand I wonder: Is it possible to use the options boxed and normal at the same time?

Greetings and thank you all

Please Wait...