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
VectorCalculus[DirectionalDiff] - R^n から R へのある関数の方向導関数の計算
使い方
DirectionalDiff(f, v, c)
パラメータ
f - 代数式
v - ベクトル; 導関数の方向の指定
c - (オプション) リスト[名前] または名前[名前, 名前, ...]; 座標名のリスト、または座標の名前を添えた座標系の指定
説明
DirectionalDiff(f, v, c) コマンドは、ベクトル v で指定された方向における、関数 f の方向導関数を計算します。方向導関数は、Del(f) . u として定義されます。ここで、u は方向 v の単位ベクトルを表します。ベクトル v が正規化されている必要はないことに注意して下さい。
c が変数名のリストである場合には、デフォルト座標系におけるそれらの変数に関する方向導関数が求められます。
c が添え字つきの座標系である場合には、座標系と座標名の組み合わせが使用されます。この座標系は、既に v で指定されている座標系の属性に優先します。c が指定されていない場合には、 f はデフォルトの座標系で解釈され、(もし指定されていれば) v の座標系の属性が使用されます。
例
with(VectorCalculus):
Warning, the assigned names <,> and <|> now have a global binding Warning, these protected names have been redefined and unprotected: *, +, ., Vector, diff, int, limit, series
DirectionalDiff( x^2+y^2, <1,1>, [x,y] );
DirectionalDiff( r^2, <sqrt(2),Pi/4>, 'polar'[r,theta] );
DirectionalDiff( f(x,y,z), <a,b,c>, [x,y,z] );
SetCoordinates( 'cylindrical'[r,theta,z] );
DirectionalDiff( f(r,theta,z), <a,b,c> );
参照
VectorCalculus パッケージの紹介, VectorCalculus[diff], VectorCalculus[Gradient], VectorCalculus[SetCoordinates]
Download Help Document