matlab中,a=[1 3 5 2 0],哪个函数能把a中元素倒置,使之成为[0 2 5 3 1]?
问题描述:
matlab中,a=[1 3 5 2 0],哪个函数能把a中元素倒置,使之成为[0 2 5 3 1]?
答
a=[1 3 5 2 0]
a(end:-1:1)=a