Examples of Maple Code
Sample imperative programming constructs:
myfac := proc(n::nonnegint) local out, i; out := 1; for i from 2 to n do out := out * i end do; out end proc;Simple functions can also be defined using the "maps to" arrow notation:
myfac := n -> product( i, i=1..n );Read more about this topic: Maple (software)
Famous quotes containing the words examples of, examples, maple and/or code:
“It is hardly to be believed how spiritual reflections when mixed with a little physics can hold peoples attention and give them a livelier idea of God than do the often ill-applied examples of his wrath.”
—G.C. (Georg Christoph)
“Histories are more full of examples of the fidelity of dogs than of friends.”
—Alexander Pope (16881744)
“Once they came on a maple in a glade,
Standing alone with smooth arms lifted up,
And every leaf of foliage shed worn
Laid scarlet and pale pink about her feet.”
—Robert Frost (18741963)
“Many people will say to working mothers, in effect, I dont think you can have it all. The phrase for have it all is code for have your cake and eat it too. What these people really mean is that achievement in the workplace has always come at a priceusually a significant personal price; conversely, women who stayed home with their children were seen as having sacrificed a great deal of their own ambition for their families.”
—Anne C. Weisberg (20th century)