gpt4 book ai didi

arrays - Matlab中反转数组顺序

转载 作者:行者123 更新时间:2023-12-02 19:38:35 24 4
gpt4 key购买 nike

如果我有一个数组

>> c = 1:10

c =

1 2 3 4 5 6 7 8 9 10

如何反转最后五个元素,以便我的新数组为

c =

1 2 3 4 5 10 9 8 7 6

谢谢,

最佳答案

需要对子数组使用数组合并和翻转

A = 1:10
A = [A(1:5),fliplr(A(6:10))]

关于arrays - Matlab中反转数组顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42061302/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com