Matlab向量倒序。

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

 Risposta accettata

kpwqmn
kpwqmn il 20 Mag 2023

0 voti

注意向量格式,我电脑上都没问题的。
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

Più risposte (0)

Categorie

Scopri di più su MATLAB 快速入门 in Centro assistenza e File Exchange

Tag

Richiesto:

il 20 Mag 2023

Risposto:

il 20 Mag 2023

Community Treasure Hunt

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

Start Hunting!