필터 지우기
필터 지우기

Reversing a vector in the same line of code

조회 수: 2 (최근 30일)
Dacian Andrei Firca
Dacian Andrei Firca 2022년 3월 3일
댓글: Dacian Andrei Firca 2022년 3월 3일
Hi guys! Starting from the vector a_vec = [2, 4, -5, 7, 18, 0], using a single command line generate a vector that contains the same values, but in reverse order. How can i generate the line code?
Thank you!

채택된 답변

Bruno Luong
Bruno Luong 2022년 3월 3일
a_vec = [2, 4, -5, 7, 18, 0]
a_vec = 1×6
2 4 -5 7 18 0
flip(a_vec)
ans = 1×6
0 18 7 -5 4 2

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by