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
conjugate - 共役複素数を返す
使い方
conjugate(x)
パラメータ
x - 式
説明
conjugate(x) 関数は、x の complex conjugate () を計算します。
x が関数 f を含むとき、 conjugate(x) は (存在するならば) 手続き `conjugate/f` を実行し、式の対応する部分の共役複素数を計算します。
この方法によって、このコマンドの機能を拡張することができます。たとえば、関数 f が共役対称であるということを次の関数を定義することにより、登録することができます。
`conjugate/f` := proc(x) f(conjugate(x)) end proc;
未知の変数が実数値を表すことを指定するには、assume コマンドまたは evalc コマンドを使います。
例
conjugate(3+5*I);
conjugate((3+5*I)*z);
conjugate(sin(exp(1)));
conjugate(exp(3*I));
conjugate(polar(3,Pi/7));
参照
evalc, Re, expand, combine, inifcns, assume
Download Help Document