-1

假设我有'1 2 3'. 我想得到'3 2 1'。如何在 Matlab 中获取它?

更详细的例子

N=64;
[x y]=meshgrid(linspace(-3*pi,3*pi,N),linspace(-3*pi,3*pi,N));
t=sqrt(x.^2+y.^2);

% Now instead of "f=t+2*sinc(t);", I want to get all elements inverted aka 
% first element becomes the last and so on -- I thought it would be 
% sinc(abs(length(t)-t)) but it is not.
4

1 回答 1

6

使用 MATLAB 函数fliplr

于 2013-01-28T11:45:54.847 回答