charlie_fcl

85 Reputation

2 Badges

1 years, 93 days

MaplePrimes Activity


These are questions asked by charlie_fcl

Hi,

I'm experimenting with some plot functions in Maple and cannot make the animate function to work, even for the help example (attached). It works fine when I insert it here but not in my worksheet.

with(plots)

NULL

plots[animate](plot, [A*sin(x), x = 0 .. 10], A = 0 .. 2)

 

NULL

Download animate_prob.mw

Any ideas?

Hi,

I like to know if it is possible to use a for loops in MapleFlow. I've tried a couple of times but it didn't work. For example,

n:=6
a:=Matrix(n,n)

for l from 1 to n do

   for c from 1 to n do

     a[l,c]:=2^(l+c)

   end do

end do

a=

 

doesn't produce any result for a

Best regards,

Hi,

I'm trying to solve the attached system but I don't know how to proceed.

d := 0.3e-1

NULL

omega := Vector(2, {(1) = m[1, 1], (2) = m[2, 1]}) = Vector[column]([[20.33], [61.10]])NULL

NULL

f := proc (x) options operator, arrow; d+(-1)*.5*(alpha/beta-beta*x) end proc

NULL

`~`[f](omega) = Vector[column](%id = 36893628861525817332)NULL

NULL

solve(`~`[f](omega) = 0, {alpha, beta})

 

Any ideas?

Thanks very much in advance.

Best regards,

Download maple_problem.mw

Hi,

I'd like to pass a matrix/row as an argument to a function (as in the example below) but I cannot find any documentation on it. Is it possible? If so, how could it be done?

a:=Array(1,5,frandom(0..20))

b:=sin(a)

thanks very much in advance.

best regards.

Hi,

does anyone has any idea on how the number of digits displayed and the accuracy of calculations in MapleFlow works?

It looks like it is nothing like it is in Maple.

For example:

Digits:=10

interface(displayprecision)=3

1.0210=1.219

interface(displayprecision=10)

1.0210=1.219

Digits:=15

interface(displayprecision=10)

1.0210=1.219

Best regards,

1 2 Page 1 of 2