Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の行列があるとします。
matrix = [2 2; 2 3; 3 4; 4 5]
そして今、生成する偶数で始まらないすべての行を除外したいと思います
[2 2; 2 3; 4 5]
これを行うための高レベルの手順はありますか、それともコードを作成する必要がありますか?