RossC

25 Reputation

3 Badges

14 years, 318 days

MaplePrimes Activity


These are questions asked by RossC

I was very comfortable using printlevel with loops, conditionals and procedures in Maple 13, but recently upgraded to Maple 14.

The problem is that, regardless of printlevel, statements nested more than 1 from the top level of maple do not show. Oddly, this doesn't affect procedures or even nested loops inside procedures. The simple code here demonstrates the problem.

>restart;
>printlevel:=100:
>for i from 1 to 2 do
       for j from 1 to 2 do

I am trying to learn more about certain maple functions using:

interface(verboseproc=2):
readlib(fsolve); #for example

This works well, but sometimes the function calls something else that I don't quite understand. An example for fsolve is when it has decided to use Newton's method:

#this is taken somewhere from inside the fsolve procedure

sol:='fsolve/sysnewton'(eqs,[r])

 

I can't figure out how to view the code for this...

Page 1 of 1