Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
lprint - linear printing of expressions
Calling Sequence
lprint(expr1, expr2, ...)
Parameters
expr1, expr2, ...
-
any expressions
Description
The procedure lprint returns NULL and prints its arguments in a one-dimensional format.
The expressions expr1, expr2,..., each separated from the others by a comma and a space, are printed on a single line.
Like most procedures in Maple, the arguments to lprint are evaluated before being passed to the procedure.
In general, the printed form produced by lprint is valid Maple input.
Maple will print all expressions after normal evaluation using lprint if the interface variable prettyprint is set to .
The procedure lprint displays output as a side-effect, and returns NULL as the procedure value. Therefore the ditto commands, %, %% and %%%, will not recall the output from the lprint command.
The procedure lprint is intended for device independent printing and makes no use of special features of the user interface. For pretty-printing, using a two-dimensional output format, see print. For formatted output, see printf and fprintf.
Thread Safety
The lprint command is thread-safe as of Maple 15.
For more information on thread safety, see index/threadsafe.
Examples
3*x^2, x, Int(sin(x+y)/(x-y),x)
Arguments are evaluated before printing.
Si(x-y)*cos(2*y)+Ci(x-y)*sin(2*y)
Note: In command-line Maple, the output of lprint can be cut and paste into a Maple session while pretty-printed output cannot.
(x^4-y)/(y^2-3*x)
The interface setting of pretty print determines whether line printing or pretty-printing is used to display the results of normal evaluation.
See Also
fprintf, interface, print, printf, printlevel
Download Help Document