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
MTM[sum] - add elements in a matrix row or column
Calling Sequence
sum(M, dimension)
Parameters
M
-
matrix, vector, or array
dimension
1 or 2
Description
The sum(M) command computes the sum of the elements in the first non-singleton dimension of the given array.
The sum(M,dimension) command computes the sum of the elements in the given singleton dimension of the given array.
If M is 1-D, sum(M) computes the sum of the elements in the given vector.
If M is 2-D, sum(M) or sum(M, 1) creates a row vector of column sums of the matrix. The sum(M, 2) command creates a column vector of row sums of the matrix.
When M has n dimensions, sum will return an array with n-1 dimensions. Subarrays will be added together along the specified dimension (or first non-singleton dimension if unspecified).
Examples
See Also
MTM[prod]
Download Help Document