What is the advantage of fliplr, flipud?

18 Ansichten (letzte 30 Tage)
Ray Lee
Ray Lee am 28 Nov. 2018
Kommentiert: Sean de Wolski am 28 Nov. 2018
It's easy to flip along a dim using `end:-1:1`. So why design the builtin fliplr, flipud functions?

Antworten (1)

per isakson
per isakson am 28 Nov. 2018
Bearbeitet: per isakson am 28 Nov. 2018
YMMV
  • higher level; easier to read and remember
  • fliplr is faster for large vectors (R2018a)
  1 Kommentar
Sean de Wolski
Sean de Wolski am 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.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by