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[MapToBasis] - 異なる座標系間でのベクトルおよびベクトル場の変換
使い方
MapToBasis(V, c)
パラメータ
V - ベクトルまたはベクトル値の手続き; 変換されるベクトルまたはベクトル場の指定
c - (オプション) 名前または名前[名前, 名前, ...]; 目的の座標系の指定
説明
MapToBasis(V, c) コマンドは、異なる座標系間で、ベクトルおよびベクトル場の変換を行います。
V がベクトル値の手続きである場合には、それはベクトル場であると解釈されます。そうでなければ、vectorfield は、VectorField ルーチンの呼び出しにより作成された Vector となります。
c が指定されていない場合には、現在のデフォルト座標系が使用されます。V がベクトル場を表すとき、それを含む座標には、新しい座標の名前が添えられていなくてはなりません。そうでない場合には、エラーが起こります。V がベクトルを表すときには、座標名は必要ありません。
V に座標系の属性が指定されている場合には、V はこの座標系内で解釈されます。そうでない場合には、オブジェクトは現在のデフォルト座標系内にあるベクトル、またはベクトル場として解釈されます。その2つが互換性を持たない場合には、エラーが起こります。
例
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
GetCoordinates();
MapToBasis( <1,1>, 'polar' );
MapToBasis( %, 'cartesian' );
v := <r,theta>;
SetCoordinates( v, 'polar' );
MapToBasis( v );
SetCoordinates( 'spherical'[r,phi,theta] );
v := VectorField( <r,0,0> );
MapToBasis( v, 'cartesian'[x,y,z] );
MapToBasis( (r,phi,theta) -> <1/r^2,0,0>, 'cartesian'[x,y,z] );
参照
VectorCalculus パッケージの紹介, VectorCalculus の座標系, VectorCalculus[GetCoordinates], VectorCalculus[SetCoordinates], VectorCalculus[Vector], VectorCalculus[VectorField]
Download Help Document