how do i reverse a vector
Ältere Kommentare anzeigen
so far i have this
function [Vout]=reverse(Vin)
Akzeptierte Antwort
Weitere Antworten (3)
Royi Avital
am 13 Jun. 2011
This might work as well (For 1D Vectors):
vReversed = v(end:-1:1);
Good luck!
3 Kommentare
Shweta Kanitkar
am 29 Mai 2013
v(end:-1:1) subtracts each element from v(end) by 1.
Walter Roberson
am 28 Jun. 2013
Matt Eicholtz points out that Shweta's comment is incorrect; no subtraction is done, only indexing.
Cyrus David Pastelero
am 8 Jul. 2020
This is what I am looking for. Thank you.
Walter Roberson
am 13 Jun. 2011
2 Stimmen
fliplr() or flipud()
... But I suspect this is a class assignment. You will need to use your knowledge of MATLAB indexing and looping to work out your assignments for yourself.
goga
am 19 Nov. 2011
1 Stimme
use fliplr()
Kategorien
Mehr zu Matrix Indexing finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!