有个向量a=[1;4;2;3;5;6],想把它倒过来得到b=[6;5;3;2;4;1].什么函数可以实现呢

 Accepted Answer

kpwqmn
kpwqmn on 20 May 2023

0 votes

注意向量格式,我电脑上都没问题的。
clear,clc;
a=[1,4,2,3,5,6]
b=fliplr(a)
disp('----------------------------------------');
a=[1;4;2;3;5;6]
b=flipud(a)
a =
     1     4     2     3     5     6
b =
     6     5     3     2     4     1
----------------------------------------
a =
     1
     4
     2
     3
     5
     6
b =
     6
     5
     3
     2
     4
     1

More Answers (0)

Categories

Find more on MATLAB 快速入门 in Help Center and File Exchange

Tags

Asked:

on 20 May 2023

Answered:

on 20 May 2023

Community Treasure Hunt

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

Start Hunting!