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
convert/Vector - convert a list, vector, array, Array, Vector, matrix or Matrix to a Vector
Calling Sequence
convert( A, Vector, ... );
convert( A, Vector[o], ... );
Parameters
A
-
list, vector, array, Array, Vector, matrix, Matrix; expression to convert
o
(optional) use either row or column; specifies result orientation
...
options to be passed to the Vector constructor
Description
The convert(A, Vector) function converts the parameter A into a Vector.
The orientation of the result can be specified via the parameter o. The default orientation is column.
If A is a 1-dimensional array or Array, a list, a vector or a Vector, it is simply passed directly to the Vector constructor, together with any additional options, and the orientation, o, if provided.
If A is a matrix, Matrix, 2-D array or 2-D Array, its columns or rows are concatenated to form the result. If the orientation parameter, o, is either not provided or is given as column, the columns of A are concatenated (from left to right) and a column Vector is returned. If the orientation parameter is given as row, the rows of A are concatenated (from top to bottom) and a row Vector is returned. Any additional parameters are passed to the Vector constructor when building the result.
Alternatively, use the ArrayTools[Copy] function. The ArrayTools[Copy] function copies data from an existing Matrix, Vector, or Array (source) to another Matrix, Vector, or Array (target).
Examples
See Also
Array, ArrayTools[Copy], convert, convert/vector, list, Matrix, rtable, type/Vector, Vector, vector(deprecated)
Download Help Document