Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
LinearAlgebra[Dimension] - 行列またはベクトルの次元の決定
LinearAlgebra[RowDimension] - 行列の行次元の決定
LinearAlgebra[ColumnDimension] - 行列の列次元の決定
使い方
Dimension(A)
RowDimension(A)
ColumnDimension(A)
パラメータ
A - 行列またはベクトル
説明
ベクトル A に対して Dimension(A) 関数は、A の要素の個数を表す非負整数を返します。A が行列ならば、A の行次元と列次元を表す 2 つの非負整数が返されます。
Dimensions(A) は Dimension(A) の代わりの形です。
行列 A に対して RowDimension(A) 関数は、 A の行の個数を表す非負整数を返します。
ColumnDimension(A) 関数は、A の列の個数を表す非負整数を返します。
この関数は LinearAlgebra パッケージの一部ですから、コマンド with(LinearAlgebra) を実行した後にのみ Dimension(..) の形で使うことができます。ただし、長い形の名前 LinearAlgebra[Dimension](..) を使えばいつでもアクセスすることができます。
例
with(LinearAlgebra): V := <x,y,z,w>;
Dimension(V);
A := IdentityMatrix(3,5);
rowdim := RowDimension(A);
coldim := ColumnDimension(A);
m,n := Dimension(A);
参照
Matrix, Vector
Download Help Document