Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
WARNING - write a warning message to the current output stream
Calling Sequence
WARNING(msgString, msgParam1, msgParam2, ...)
Parameters
msgString
-
text of warning message
msgParam[i]
parameters to substitute into msgString
Description
A call to the WARNING function causes a warning to be produced on the current output stream. The message is displayed preceded by the string "Warning,".
If warnings are turned off, via interface(warnlevel=0), the warning will not be produced, and the call to WARNING will have no effect.
The msgString is a string value which is independent of any parameters that are to be part of the message (for instance, the string complaining about an unassigned variable must not mention the variable by name). The string may however contain numbered parameter locations, of the form '%n' when n is a decimal integer.
The msgParams are one or more arbitrary Maple objects that will be substituted into numbered parameter locations in the msgString.
In the msgString, numbered parameters are used for placeholders for actual values or names. For example, the warning "f has a 2nd argument, x, which is missing" is specified by the msgString "%1 has a %-2 argument, %3, which is missing", and the msgParams f, 2, and x.
Each numbered parameter consists of the percent symbol, "%", optionally followed by a minus sign, "-", followed by one or more digits, making up an integer n. At message display time, the nth msgParam will be substituted for the numbered parameter.
A numbered parameter of the form %n will display the nth msgParam in lprint notation.
A numbered parameter of the form %-n will display the nth msgParam, assumed to be a Maple integer, in ordinal form. For example, the value 2 is displayed as "2nd".
The special parameter, %0, will display all the msgParams, separated by a comma and space.
Examples
f := proc(x) if x<0 then WARNING("result is complex") end if; sqrt(x) end proc;
Warning, result is complex
Warning, .76e-1 CPU seconds used
See Also
error, interface, sprintf
Download Help Document