Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
VectorCalculus[RootedVector] - create 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); specify root point of the vector
vspace
root=module(Vector,GetRootPoint), specify VectorSpace where the vector lies
comps
list(algebraic) or Vector(algebraic); components specifying the coefficients of the basis vectors
c
(optional) symbol or symbol[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. The rooted Vector is one of the principal data structures of the Vector Calculus package.
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 argument c can be of the form coords=coord_name, coordinates=coord_name, or simply coord_name, where coord_name is the name of a valid coordinate system.
The components comps should be specified as a list. Alternatively, for convenience, it can be specified as a free Vector in Cartesian coordinates or a position Vector. 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.
Rooted Vectors always display as column vectors, independent of any formatting specified by a call to the BasisFormat command.
For details on the differences between rooted Vectors, free Vectors, position Vectors and vector fields, see VectorCalculus,Details.
Examples
Introductory Examples:
See Also
attributes, VectorCalculus, VectorCalculus[About], VectorCalculus[GetCoordinates], VectorCalculus[GetRootPoint], VectorCalculus[GetSpace], VectorCalculus[MapToBasis], VectorCalculus[Vector], VectorCalculus[VectorSpace]
Download Help Document