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
空のステートメント
説明
構文: null;
Maple では、空のステートメントにはコマンドはありません。たとえば、次の例では 2 番目のステートメントが空のステートメントです:
; ;quit
空のステートメントの主な目的は、構文エラーを起こさずに重複するセミコロンを使用できるようにすることです。たとえば、厳密な Maple 構文では次のような cube 文の後にはセミコロンの区切り文字は存在しないはずです:
for i to 5 do
sqr[i] := i^2;
cube[i] := i^3
end do;
ただし、すべてのステートメントをセミコロンで終了する方法に慣れているユーザーの場合、上記のように後に i^3 を指定すると使用できます。こうすると、キーワード end do の前に空のステートメントが存在すると Maple パーサーにみなされるためです。
Download Help Document