- higher level; easier to read and remember
- fliplr is faster for large vectors (R2018a)
What is the advantage of fliplr, flipud?
12 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
It's easy to flip along a dim using `end:-1:1`. So why design the builtin fliplr, flipud functions?
0 Commenti
Risposte (1)
per isakson
il 28 Nov 2018
Modificato: per isakson
il 28 Nov 2018
YMMV
1 Commento
Sean de Wolski
il 28 Nov 2018
- Works long any arbitrary dimensional array:
x = rand(3,3,3,3,3);
flipud(x)
Though flip() is now the preferred means.
- Easier for users not fluent in indexing.
Vedere anche
Categorie
Scopri di più su Matrices and Arrays in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!