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
Environment Variables
Description
Environment variables can be used in a simple assignment. In a procedure body, the assignment is automatically undone on exit from the procedure. The value of the environment variable is available to all subprocedures called from that procedure, unless locally superseded.
The following is a list of predefined environment variables:
%
%%
%%%
Digits
UseHardwareFloats
index/newtable
mod
Normalizer
NumericEventHandlers
Order
printlevel
Rounding
Testzero
A variable with name beginning with "_Env" is considered an environment variable.
, , and are the results of the last, second last, and third last computation in the current environment.
Digits is the number of significant digits used for floating-point operations, and is set to 10 initially.
mod is set to `modp` initially.
Normalizer is set to `normal` initially, and is used by the kernel in series to normalize leading terms of divisors.
Order represents the order of series calculations performed by Maple. It does not represent the order of the series output. Order is set to 6 initially.
The setting of printlevel causes the display of the results of all statements executed up to the level indicated by printlevel. Initially, printlevel is set to 1.
Testzero is initialized with proc() evalb(Normalizer(args[1]) = 0) end proc, which is a relatively trivial test for zero. Testzero is used in the kernel by series, when it needs to determine whether a leading coefficient is zero for division. In principle, every test for zero and every call to normal should be done using these functions.
The call anames('environment') returns a sequence of all the currently active environment variables. Note that an _Env variable is not considered to be an environment variable at the top level; only once execution is inside a procedure is an environment set up to protect the top-level value of the variable. So, _Env variables only show up if these variables are modified within a procedure, and anames('environment') is called from within the procedure or at a deeper level of execution.
Examples
t := proc() Digits := Digits + 4; end proc:
During the execution of "t", Digits is increased by 4, and automatically reset on exit from "t".
The following is an example of a user-defined environment variable.
p := proc() _Envy := bar end proc:
p := proc() _Envy := bar; anames(environment) end proc:
See Also
Digits, ditto, mod, normal, NumericEventHandler, Order, printlevel, Rounding, series, UseHardwareFloats
Download Help Document