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.
私はベクトルを持っています
a = 1:4
私は手に入れたい
[4 3 2 1]
どのmatlab関数を使用する必要がありますか?
行の使用について
fliplr(a)
カラム用
flipud(a)
別のオプションは、インデックスを使用することです
a(end:-1:1)
反転する配列が範囲a:bの場合、使用する方がはるかに高速です。
a:b
-(-b:-a)