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[TangentLine] - R^n 内における曲線の接線の計算
使い方
TangentLine(f, var)
パラメータ
f - 'ベクトル'(代数) またはベクトル値の手続き、または、スカラの式; 曲線の指定
var - name=algebraic または代数; 点および曲線のオプションパラメータの指定
説明
TangentLine(f, var) コマンドは、var で指定される点における、曲線 f の接線を計算します。曲線は、ベクトル値の手続き、ベクトル、または、スカラの式として入力が可能です。
f がスカラの式の場合、 カレントの座標系の変数 ( SetCoordinates 参照)で与えられなければなりません。また、カレントの座標系は 2次元である必要があります。 式は、カレントの座標の名前を使用して、ベクトルの形に変換されます。 たとえば、座標系が 'cartesian'[x, y] であり、f が y の関数の場合、f は <f, y> の形のベクトルに変換されます。
var が等式である場合には、その左辺は曲線のパラメータ、右辺は議論する点となります。var が式の場合には、それは議論する点を表し、曲線のパラメータは f の成分から推論されなくてはなりません。
入力曲線がベクトルまたはスカラーである場合には、その出力はベクトルになります。入力曲線が手続きの場合には、出力も手続きとなります。出力オブジェクトは、入力オブジェクトと同じパラメータを使用します。
例
with(VectorCalculus):
Warning, the assigned names <,> and <|> now have a global binding Warning, these protected names have been redefined and unprotected: *, +, ., D, Vector, diff, int, limit, series
TangentLine( <t,t^2,t^3>, t=a );
SetCoordinates('cartesian'[x,y]);
TangentLine( x^2, x=a );
TangentLine( <cos(t),sin(t)>, 0 );
TangentLine( t -> <exp(t),t^2>, t=b );
TangentLine( x -> exp(x), b );
参照
VectorCalculus, VectorCalculus[Tangent], VectorCalculus[TangentPlane], VectorCalculus[TangentVector], VectorCalculus[Vector]
Download Help Document