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[evalVF] - ある点におけるベクトル場の評価
使い方
evalVF(F, v)
パラメータ
F - ベクトルまたは手続き; ベクトル場の成分の指定
v - ベクトル; ベクトル場の評価を行いたい点の指定
説明
コマンド evalVF(F, v) は、点 v における ベクトル場 F の評価を行います。パラメータ F と v は、同じ次元である必要がありますが、同じ座標系で定義されている必要はありません。
ベクトル場のパラメータ 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
SetCoordinates(polar[r,theta]);
F := VectorField(<r^2*theta,-theta>);
simplify(evalVF(F,<1,Pi/2>));
evalVF((a,b)-><a^2,b^2>, Vector([0,1], attributes=[coordinates=cartesian]));
参照
VectorCalculus パッケージの紹介, VectorCalculus の座標系, VectorCalculus[GetCoordinates], VectorCalculus[MapToBasis], VectorCalculus[SetCoordinates], VectorCalculus[Vector], VectorCalculus[VectorField]
Download Help Document