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
Re - 複素数値の式の実部を返す
Im - 複素数値の式の虚部を返す
使い方
Re(x)
Im(x)
パラメータ
x - 数式
説明
Re(x) 関数は x の実部を返そうとします。
x が実の拡張された数値ならば、x が返されます。x が複素の拡張された数値ならば、x の実部が返されます。
Im(x) 関数は x の虚部を返そうとします。
x が実の拡張された数値ならば、0 が返されます。x が複素の拡張された数値ならば、x の虚部が返されます。
x が関数 f を含むならば、Re(x) と Im(x) は x の対応する部分の実部と虚部を決定するために `Re/f` と `Im/f` 手続きの実行を試みます。
この方法により、これらのコマンドの機能が拡張されます。たとえば、Re(sin(3+4*I)*ln(3+4*I)) では `Re/sin`, `Im/sin`, `Re/ln`, `Im/ln` 手続きが実行されます。
未知変数を実数を表すと仮定するように指示するためには、assume や evalc コマンドを使います。
例
Re(x);
Im(x*y);
assume(z,real); Re(x*y+z);
Re(x*z);
Re(Pi+I*exp(1));
Re(cosh(3+4*I));
Im(exp(I));
Im(ln(-1));
Im(polar(3,Pi/7));
参照
assume, complex, evalc, float, numeric_types,
Download Help Document