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
linalg[potential] - ベクトル場のポテンシャルを計算する
使い方
potential(f, var, 'V')
パラメータ
f - ベクトル場
var - 変数のリスト
'V' - ポテンシャルが返される名前
説明
関数 potential は、与えられたベクトル値関数がスカラーポテンシャルから導出されるかどうかを判定し、もし存在するならばポテンシャルを決定します。
この関数は、関数 f がスカラーポテンシャルを持つならば真の値 (true) を返し、持たないならば偽の値 (false) を返します。
f に対し、スカラーポテンシャルが存在するならば、3番目の引数で与えられた名前 V が割り当てられます。もし potential が true を返すならば、V には grad V = f となるスカラー関数 f が割り当てられます。
コマンド with(linalg,potential) により、このコマンドの省略形を使うことができます。
例
with(linalg):
Warning, the protected names norm and trace have been redefined and unprotected
f := [2*x*y + y^3, x^2 + 3*x*y^2];
potential(f, [x,y], 'F');
F;
g := [2*x, 2*y, 2*z];
potential(g, [x,y,z], 'G');
G;
参照
linalg[vecpotent], linalg[grad]
Download Help Document