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
linalg[row] - extract row(s) of a matrix as vector(s)
linalg[col] - extract column(s) of a matrix as vectors(s)
Calling Sequence
row(A, i)
row(A, i..k)
col(A, i)
col(A, i..k)
Parameters
A
-
matrix
i, k
positive integers
Description
Important: The linalg package has been deprecated. Use the superseding packages, LinearAlgebra and VectorCalculus, instead.
- For information on migrating linalg code to the new packages, see examples/LinearAlgebraMigration.
The function col(A, i) (row(A, i)) extracts the ith column (row) of the matrix A. The result is returned as a vector.
More generally, col(A, i.. k) (row(A, i.. k)) extracts a sequence of columns (rows) i..k of the matrix A. The result is returned as a sequence of vectors.
These functions are part of the linalg package, and so can be used in the form row(..) only after performing the command with(linalg) or with(linalg,row). These functions can always be accessed in the long form linalg[row](..).
Examples
See Also
linalg(deprecated)[addrow], linalg(deprecated)[delrows], linalg(deprecated)[mulrow], linalg(deprecated)[rowdim], linalg(deprecated)[stackmatrix], LinearAlgebra
Download Help Document