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
type[+] - 型 `+` の式かチェック
type[*] - 型 `*` の式かチェック
type[^] - 型 `^` の式かチェック
使い方
type(expr, `+`)
type(expr, `*`)
type(expr, `^`)
パラメータ
expr - 任意の式
説明
これらの手続きは式に対して様々な算術の型をチェックします。算術演算に関する詳しい情報は、arithop を参照して下さい。
差は型 `+` を持つと考えられ、同様に割り算は型 `*` を持つと考えられます。
算術演算子は関数の呼び出しにおいて、バッククォートで囲まなければいけません。
算術演算の型は、完全に展開された演算を評価するときに Maple が最後に行う演算として定義されます。したがって、式
(x-1)/2
の型は実際 `*` ではなく `+` です。なぜなら、この式を展開した形は 1/2 x -1/2 だからです。
例
type(x^2,`^`);
type(x+2,`+`);
type(x+x,`+`);
type(x+x,`*`);
参照
type, +, -, *, /, ^
Download Help Document