Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
Student[VectorCalculus][RootedVector] - creates a vector rooted at a given point with specified components in a given coordinate system
Calling Sequence
RootedVector(origin,comps,c)
RootedVector(vspace, comps)
Parameters
origin
-
root=list(algebraic) or root=Vector(algebraic); root point of the vector
vspace
root=module(Vector,GetRootPoint), VectorSpace where the vector lies
comps
list(algebraic) or Vector(algebraic); components specifying the coefficients of the basis vectors
c
(optional) name or name[name, name, ...]; specify the coordinate system, possibly indexed by the coordinate names
Description
The call RootedVector(origin,comps,c) returns a vector rooted at point origin with components comps in c coordinates. Note that the Student[VectorCalculus] package only supports the cartesian, polar, spherical and cylindrical coordinate systems.
The rooted Vector is one of the four principal Vector data structures of the Student[VectorCalculus] package. Note that the Student[VectorCalculus] and the VectorCalculus packages share the same Vector data structures.
For details on the differences between the four principal Vector data structures, namely, rooted Vectors, position Vectors, free Vectors, and vector fields, see VectorCalculus,Details.
If no coordinate system argument is present, the current coordinate system is used.
The root point origin can be specified as a free or position Vector or as a list of coordinate entries. If it is a free or position Vector, the coordinate system attribute is checked and conversion of the point to the current or specified c coordinate system is done accordingly.
The keyword root can also be given as point.
The components comps must be specified as a free Vector in Cartesian coordinates, a position Vector or as a list. The elements of the Vector or list are taken to be the coefficients of the unit basis vectors in the target coordinate system (as specified by the c parameter, if given, or else the current coordinate system).
The call RootedVector(vpsace,comps) returns a vector rooted at the root point of the VectorSpace vspace with components comps in the coordinate system of vspace. No extra coordinate system needs to be specified. The comps argument can be a list, a free Vector in Cartesian coordinates or a position Vector.
The returned rooted vector has a VectorSpace attribute that contains a module representation of the vector space rooted at the point origin.
The display format for RootedVectors can be controlled by calling BasisFormat.
Examples
Introductory Examples:
See Also
attributes, Student[VectorCalculus], Student[VectorCalculus][About], Student[VectorCalculus][GetCoordinates], Student[VectorCalculus][GetRootPoint], Student[VectorCalculus][GetSpace], Student[VectorCalculus][MapToBasis], Student[VectorCalculus][Vector], Student[VectorCalculus][VectorSpace]
Download Help Document