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

 Réponse acceptée

kpwqmn
kpwqmn le 20 Mai 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

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB 快速入门 dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!