3

我有一个 7*1 向量a = (1:7).'。我想A从向量形成一个大小为 4*4的矩阵,使得矩阵的对角线的a元素如下:aA

A = [1 2 3 4;
     2 3 4 5;
     3 4 5 6;
     4 5 6 7]

我希望这适用于 general a,而不仅仅是当元素是连续整数时。

我很感激任何帮助。

4

2 回答 2

6

设置索引

meshgridcan 的两个输出相加得到索引:

[x, y] = meshgrid(1:4, 0:3);
x + y;
% ans = [1     2     3     4
%        2     3     4     5
%        3     4     5     6
%        4     5     6     7];

如果a就像你的例子一样,你可以停在那里。或者,使用它来索引一般向量a。为了比较,我将使用与 rahnema1 为他们的方法所做的相同示例输入:

a = [4 6 2 7 3 5 1];
[x, y] = meshgrid(1:4, 0:3);
A = a(x + y);    
% A = [4     6     2     7
%      6     2     7     3
%      2     7     3     5
%      7     3     5     1] 

很多方法可以创建索引而不是使用meshgrid,请参阅下面的基准测试函数以获取一些示例!


基准测试和七种不同的方法。

以下是运行不同方法的一些时间安排,包括使用cumsumrepmathankel简单for循环的方法。该基准是在 Matlab 2015b 中完成的,因此利用了 Matlab 优化等,而 rahnema1 的答案中的 Octave 基准可能无法做到。我还使用了timeittic/更强大的函数,toc因为它进行了多次试验等。

function benchie()
    n = 10000;    % (large) square matrix size
    a = 1:2*n-1;  % array of correct size, could be anything this long
    f1 = @() m1(a,n);  disp(['bsxfun:   ', num2str(timeit(f1))]);
    f2 = @() m2(a,n);  disp(['cumsum:   ', num2str(timeit(f2))]);
    f3 = @() m3(a,n);  disp(['meshgrid: ', num2str(timeit(f3))]);
    f4 = @() m4(a,n);  disp(['repmat:   ', num2str(timeit(f4))]);
    f5 = @() m5(a,n);  disp(['for loop: ', num2str(timeit(f5))]);
    f6 = @() m6(a,n);  disp(['hankel1:  ', num2str(timeit(f6))]); 
    f7 = @() m7(a,n);  disp(['hankel2:  ', num2str(timeit(f7))]); 
end
% Use bsxfun to do broadcasting of addition
function m1(a,n); A = a(bsxfun(@plus, (1:n), (0:n-1).')); end
% Use cumsum to do cumulative vertical addition to create indices
function m2(a,n); A = a(cumsum([(1:n); ones(n-1,n)])); end
% Add the two meshgrid outputs to get indices
function m3(a,n); [x, y] = meshgrid(1:n, 0:n-1); A = a(x + y); end
% Use repmat twice to replicate the meshgrid results, for equivalent one liner
function m4(a,n); A = a(repmat((1:n)',1,n) + repmat(0:n-1,n,1)); end
% Use a simple for loop. Initialise A and assign values to each row in turn
function m5(a,n); A = zeros(n); for ii = 1:n; A(:,ii) = a(ii:ii+n-1); end; end
% Create a Hankel matrix (constant along anti-diagonals) for indexing
function m6(a,n); A = a(hankel(1:n,n:2*n-1)); end
% Create a Hankel matrix directly from elements
function m7(a,n); A = hankel(a(1:n),a(n:2*n-1)); end

输出:

bsxfun:   1.4397 sec
cumsum:   2.0563 sec
meshgrid: 2.0169 sec
repmat:   1.8598 sec
for loop: 0.4953 sec % MUCH quicker!
hankel1:  2.6154 sec
hankel2:  1.4235 sec

因此,如果您想要一个单列,最好使用 rahnema1 的建议bsxfun或直接生成矩阵,这是一个出色的 StackOverflow 答案,它解释了 的一些优点:在 Matlab 中,何时使用 bsxfun 是最佳选择?hankelbsxfun

但是,for 循环的速度是原来的两倍多!结论:Matlab 有很多巧妙的方法来实现这样的事情,有时一个简单的 for 循环和一些适当的预分配和 Matlab 的内部优化可能是最快的。

于 2017-06-23T07:11:52.910 回答
5

您可以使用hankel

n= 4;
A= hankel(a(1:n),a(n:2*n-1))

其他解决方案(扩展/bsxfun):

在 MATLAB r2016b /Octave 中可以创建为:

A = a((1:4)+(0:3).')

在 r2016b 之前,您可以使用bsxfun

A = a(bsxfun(@plus,1:4, (0:3).'))

示例输入/输出

a = [4 6 2 7 3 5 1]

A =

   4   6   2   7
   6   2   7   3
   2   7   3   5
   7   3   5   1

使用 @Wolfie 提供的在 Octave 中测试的基准:

 _____________________________________
|Method   |memory peak(MB)|timing(Sec)|
|=========|===============|===========|
|bsxfun   |2030           |1.50       |
|meshgrid |3556           |2.43       |
|repmat   |2411           |2.64       |
|hankel   |886            |0.43       |
|for loop |886            |0.82       |
于 2017-06-23T07:12:07.653 回答