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
LinearAlgebra[MatrixVectorMultiply] - 行列と列ベクトルの積の計算
LinearAlgebra[VectorMatrixMultiply] - 行ベクトルと行列の積の計算
使い方
MatrixVectorMultiply(A, U, outopts)
VectorMatrixMultiply(V, A, outopts)
パラメータ
A - 行列
U - 列ベクトル
V - 行ベクトル
outopts - (オプション) outputoptions=list の形をした等式; 結果として得られるオブジェクトのコンストラクタオプション
説明
U が列ベクトルのとき、MatrixVectorMultiply(A, U) 関数は、A . U を計算し列ベクトルを返します。
V が行ベクトルのとき、VectorMatrixMultiply(V, A) 関数は、V . A を計算し行ベクトルを返します。
outputoptions オプション (outopts) は、結果を作成する Vector コンストラクタに付加情報 (readonly, shape, storage, order, datatype, attributes) を与えます。
この関数は LinearAlgebra パッケージの一部ですから、 with(LinearAlgebra) を実行した後にのみ MatrixVectorMultiply(..) の形で使うことができます。ただし、長い形の名前 LinearAlgebra[MatrixVectorMultiply](..) を使えばいつでもアクセスすることができます。
この関数は、同等なショートカット表記 A.U を持ちます。詳しくは、dot 演算を参照してください。
例
with(LinearAlgebra): u := <1|0|0|2>;
M := <<5,0,0,0>|<0,1,0,0>|<0,0,2,0>|<0,0,0,1>>;
v := <x,y,z,1>;
MatrixVectorMultiply(M,v);
VectorMatrixMultiply(u,M);
参照
Matrix, Vector, LinearAlgebra[Multiply], dot
Download Help Document