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