Scott03

6 years, 184 days


These are answers submitted by Scott03

Maplesoft Employee

Change DynamicSystems call

August 31 2010 by Scott03 709

0

0

What the error is indicating is that the system that you are trying to create is not a differential equation.  To get this to work, just change the sys call to

sys := DynamicSystems [ AlgEquation]( eq, inputvariable = [s1, s2],outputvariable = [F(t)]);

or

sys := DynamicSystems [ NewSystem]( eq, inputvariable = [s1, s2],outputvariable = [F(t)])

Maplesoft Employee

Try this...

August 04 2010 by Scott03 709

0

0

Since the histogram command is part of the Statistics package, you will need to change that link to something like

"maplenet/imaging/image?maple=plots[display](Statistics[Histogram]([1,2]))"

 

Scott

Maplesoft Employee

loglogplot

July 09 2010 by Scott03 709

1

0

The two ways that you can create the log-log plot is to call the function directly or set the axis to log in the sequence list.  So the following code should work.

>restart;
>with(plots):
a := sum(m^i*exp(-m)/factorial(i), i = 0 .. c):
l := []:
for c from 0 to 40 do
l := [op(l), a]:
end do:
plotlist := [seq(loglogplot(l[n], m = 0 .. 40), n = 1 .. nops(l))]:
>plots[display](plotlist);

This will produce a plot where...

Maplesoft Employee

possible solution

June 15 2010 by Scott03 709

0

0

I believe that the suggestion that pagan suggested is likely the most efficient, but if you just want to use your list of lists and use map then the following should work.

for i to 3 do
  b || i := map((x) -> [x[4], x[6]], a || i)
end do;

This should allow you to go through each of the 'a' lists and take the 4th and 6th position.

If you wanted to have the 'a' values as Matrices you could simplify this as the following

a1 := Matrix([[1, 2, 3, 4, 5, 6, 7...

Maplesoft Employee

+

May 26 2010 by Scott03 709

0

0

Maplesoft Employee

sort

May 19 2010 by Scott03 709

0

0

Maplesoft Employee

Errors?

May 18 2010 by Scott03 709

0

0

Maplesoft Employee

No such component

May 18 2010 by Scott03 709

1

0

Maplesoft Employee

ImportData()

May 18 2010 by Scott03 709

0

0

Maplesoft Employee

OS?

May 17 2010 by Scott03 709

0

0

Maplesoft Employee

Right click

May 17 2010 by Scott03 709

0

0

Maplesoft Employee

Support

May 17 2010 by Scott03 709

0

0

Maplesoft Employee

Reduce Base Radius

May 17 2010 by Scott03 709

0

0

Maplesoft Employee

in Maple 12

May 14 2010 by Scott03 709

0

0

Maplesoft Employee

Maplesoft Technical Support

May 13 2010 by Scott03 709

1

0

1 2 3 4 5 6 7 Last Page 1 of 30