onthehonda

15 Reputation

One Badge

11 years, 184 days

MaplePrimes Activity


These are questions asked by onthehonda

Dear Primers,

 

I am new to Maple and want to ask how to merge two point plots. Suppose, I have two different point plots with same x coordinates but varying y coordinates. How can I merge them just like you would merge two different line plots on a single graph?

 

Please keep it simple thanks.

I have made a maplet. The aim is to take two numbers in textboxes and find their Jacobi symbol. The result should appear in a third textbox. Now I have done all the steps and called a procedure on buttonclick. Following is the procedure I have made

jacob := proc (x, y)

local A, B;

A := x;

B := y;

with(numtheory);

jacobi(A, B)

end proc:

 

Problem: The problem is that when I make any small modification to the code it runs and shows the result in the 3rd textbox but as soon as I save it, restart maple and recompile the program, the textbox 3 will show jacobi(value of textbox1, value of textbox2) instead of the result. What should I do, actually I am new to maple. Please guide me.

Page 1 of 1