MaplePrimes Questions

Dear experts, I do not know why Maples shows me "undetermined loop" even I wrote end do:? Do you know a typical mistake in that case?
Dear experts, I know that by wirtting title=..... I can give the whole graph a title. Do you know how I can asign each curve in the graph a name? And how to give the x and y achsis a name/title? Thank you in advance a lot!

i want learn programming with maple

would you help me with lecture notes 

thanks

I get a strange error: I'm calling a procedure f( L1 , L2 ) which expects two lists L1, L2 as parameters such that each entry of L1 and L2 is of type 'rational'.

This procedure is called several times but from time to time this error occurs:

"Error, (in  ....[f]) invalid input: ....[f] expects its 1st argument, L1, to be of type ......, but received [0., 1, 0]"

Does Maple do some kind of auto-conversion of e.g. L1=[0,1, 9999999 / 10000000] to the corresponding float?

Sorry for posting something similar again on computing on multi-core-machines but it's really important.

So the question is:

There are two possibilities for solving a problem:

(a):
f := proc(L::list)

r1 := g( first part of L );
r2 := g( second part of L );

return [ op( r1 ) ,op( r2 )]:
end proc:

(b):

How can I write a Maple program (using if..else) to find the first positive integer n (between 1 and 355)such that 355 can divide n*m (m is an integer, say 199) ? Thanks for your help. 

Dear experts, I know how to give the plot a tite (title=....) but not how to give each curve a name. And furthermore not, how to give the x-achsis and the y-achsis a name. Thank you a lot!!!!!!!!!!

Hello

I have 2 equation and want to solve them using the initial conditions

How can I randomly select a number from a user defined list. 

The command seq can recognize user defined lists: seq(i^2,i=[1,5,10,25]) and so I also thought the rand command could work somewhat similar

I tried to get   rand([L])()  to work where L is my list, unfortunately it turns up an error since it must be a pos int.  

 

Dear experts, 1. last question: My Matrix M:=Matrix(10,2,[]) has 10 values containing the results f(x) and the second 10 values containing the x values. Now my question is how can I plot these values so f(x) on the y achses and x on the x aches. 2.And: I have a second matrix of the same size and want to plot it into the same graph. How could I do that? Thank you very much in advance !!!!!!
Dear experts, I have calculated a matrix M1 and now I wanted to click the right bottum of my mouse to select "browse" and the export it to excel. Unfortunately I did not find browse. Where did I do a mistake?
Dear experts, I have a matrix with 20 values called M. What do I have to write that maple gives me all 20 values in the result. I mean that Maple shows all 20 values?

Hi there,

it might sound stupid but I wasn't able to program a procedure with

1. peding number of parameters: e.g.

f := proc(a1,a2,...)
....
end proc:

should be good for both f(1,2) as well as f(1,2,3,4,20) and so on.

2. I also wasn't able to program a procedure with an optional parameter:

f := proc(a, opt)
...
end proc:

should be good for f(1) as well as for f(a,"h") etc.

 

I'm working with lengthy computations in Maple right now and I was just wondering whether it it possible to display some kind of "progress bar" after you hit the return button to start the computation.

At least in the form that text is displayed (e.g. "now is a good time to drink your coffee, computation may take a while") BUT that vanishes after the computation is complete.

Hi there,

I try to plot several graphics and print them out as follows:

for i from 1 to n do
  p:=polygonplot(...):
  disply(p);
end for:

but nothing is being diplayed. Doing that just once does the job but I need those plots for large n...

First 2108 2109 2110 2111 2112 2113 2114 Last Page 2110 of 2434