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[randmatrix] - random matrix generator
Calling Sequence
randmatrix(m, n, options)
Parameters
m, n
-
positive integers
options
(optional) names or equations
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 randmatrix function generates a random matrix of dimension m by n. It is intended to be used for generating examples for debugging, testing, and demonstration purposes. Several options are available. The options determine the form of the matrix and the entries in the matrix.
The first two arguments specify the row dimension and column dimension. The remaining arguments are interpreted as options and are input as equations or names in any order. The names sparse, dense (default), symmetric, antisymmetric, and unimodular specify the structure of the matrix. The equation entries = f specifies that the nullary function f is to be used to generate the matrix entries. The default is rand(-99..99). Thus the matrix entries are random two digit integers.
The command with(linalg,randmatrix) allows the use of the abbreviated form of this command.
Examples
poly := proc() Randpoly(3, x) mod 3 end proc;
See Also
linalg(deprecated)[matrix], LinearAlgebra, LinearAlgebra[RandomMatrix], Matrix
Download Help Document