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[Row] - 行列から行ベクトルの式列を返します
LinearAlgebra[Column] - 行列から列ベクトルの式列を返します
使い方
Row(A, L, outopts)
Column(A, L, outopts)
パラメータ
A - 行列
L - 整数、整数を端点とする範囲、 または整数か整数値の有限範囲のどちらかまたは両方のリスト; 行 (列) の選択を表す
outopts - (オプション) outputoptions=list の形をした等式; 結果として得られるオブジェクトのコンストラクタオプション
説明
Row(A, L) (Column(A, L))関数は、選択パラメータ L によって指定された行列 A の行 (列) に対応する 1 つかそれ以上の行(列)ベクトルからなる式列を返します。パラメータ L に関する詳しい情報は、Matrix and Vector Entry Selection を参照してください。
outputoptions オプション (outopts) は、結果を作成する Vector コンストラクタに付加情報 (readonly, shape, storage, order, datatype, attributes) を与えます。
outputoptions が呼び出し手順に指定されているとき、結果として得られるベクトルは、指定された同じオプションを持ちます。
この関数は LinearAlgebra パッケージの一部ですから、with(LinearAlgebra) を実行した後にのみ Row(..) の形で使うことができます。ただし、長い形の名前 LinearAlgebra[Row](..) を使えばいつでもアクセスすることができます。
例
with(LinearAlgebra): A := <<1,2,3>|<4,5,6>|<7,8,9>|<10,11,12>>;
Row(A,-2);
Column(A, [1..2,4]);
参照
Matrix, Vector, LinearAlgebra[RowDimension], LinearAlgebra[RowOperation], LinearAlgebra[DeleteRow]
Download Help Document