Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
codegen[eqn] - produce output suitable for troff/eqn printing
Calling Sequence
eqn(expr, filename)
Parameters
expr
-
any expression
filename
(optional) output to a file
Description
The eqn function produces output which is suitable for printing the input expression expr with a troff/eqn processor. It knows how to format integrals, limits, sums, products and matrices.
The mathematical format is taken, in general, from the CRC handbook or the Handbook of Mathematical functions.
The functions sum, product, int, diff, limit, and log are aliased by Sum, Product, Int, Diff, Limit, and Log, so that these can be used to prevent evaluation by Maple.
User-defined function printing can be interfaced by including a procedure `eqn/function-name`.
Note eqn will not produce .EQ or .EN lines in the output file.
The function eqn produces output as a side-effect, and returns NULL as the function value. Therefore the ditto commands, % and %%, will not recall the output of an eqn command.
Examples
{{{ "x" sup 2 }^+^{ "y" sup 2 }}~~=~~{ "z" sup 2 }}
Put this output in the file EqnFile
{{int { {( {{ "x" sup 2 }^+^1 } )} sup -1 }~d "x" }~~=~~{arctan ( "x" )}}
See Also
appendto, codegen, latex, writeto
Download Help Document