CodeKingPlusPlus

5 Reputation

3 Badges

12 years, 337 days

MaplePrimes Activity


These are questions asked by CodeKingPlusPlus

Hi All, I have the following procedure to compute the gcd between two integers:

Egcd := proc(a, b)
while b != 0 do
temp := b;
b := a mod b;
a := temp;
od;
return a;  
end proc;

Why does it simply return the value of a when the function was called? (i.e my statements inside the procedure do nothing

Hey everyone,

   When I type ?command to view help pages, Maple always says "No Matches Found." For example, when I enter the command ?plot to bring up a help page on plots, Maple will say "No Matches Found."

How do I obtain the Maple help files?

1 2 Page 2 of 2