primep_number_of_tests SciMax Toolbox printf

SciMax Toolbox >> print

print

Maxima Function

Calling Sequence

print (expr_1, ..., expr_n)

Description

Evaluates and displays expr_1, ..., expr_n one after another, from left to right, starting at the left edge of the console display.

The value returned by print is the value of its last argument. print does not generate intermediate expression labels.

See also , , , and . Those functions display one expression per line, while print attempts to display two or more expressions per line.

To display the contents of a file, see printfile.

(%i1) r: print ("(a+b)^3 is", expand ((a+b)^3), "log (a^10/b) is",
      radcan (log (a^10/b)))$
            3        2      2      3
(a+b)^3 is b  + 3 a b  + 3 a  b + a  log (a^10/b) is
                                              10 log(a) - log(b)
(%i2) r;
(%o2)                  10 log(a) - log(b)
(%i3) disp ("(a+b)^3 is", expand ((a+b)^3), "log (a^10/b) is",
      radcan (log (a^10/b)))$
                           (a+b)^3 is
                     3        2      2      3
                    b  + 3 a b  + 3 a  b + a
                         log (a^10/b) is
                       10 log(a) - log(b)
primep_number_of_tests SciMax Toolbox printf