how to inverse a vector

53 次查看(过去 30 天)
Karel
Karel 2012-8-1
I have a vector that is created in decresing order.
Example: v: [10; 9 ;8;7...;1]
However I nead him in increasing order, and I can'y seem to find a simple matlab command to achieve this.
Any help

采纳的回答

James Tursa
James Tursa 2012-8-1
For reversing the elements even if they are not sorted:
v(end:-1:1)
or
flipud(v) % or use fliplr for a row vector

更多回答(1 个)

Matt Kindig
Matt Kindig 2012-8-1
编辑:Matt Kindig 2012-8-1

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

标签

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by