Borrar filtros
Borrar filtros

Sum over all diagonals in lower matrix

6 visualizaciones (últimos 30 días)
Orongo
Orongo el 25 de Feb. de 2017
Editada: Andrei Bobrov el 28 de Feb. de 2017
Hi, I have a matrix which I will take the sum over the diagonals in the lower matrix. So for example my matrix A=rand(4,4); the result I want is following vector
P=[sum(diag(A)); sum(diag(A,-1)); sum(diag(A,-2)); sum(diag(A,-3))]
My matrix is much larger, how can this be done without looping?

Respuestas (3)

Jan
Jan el 25 de Feb. de 2017
Editada: Jan el 25 de Feb. de 2017
Why do you prefer a solution without a loop?
function speedtest
A = rand(1000, 1000);
tic
for k = 1:20
P = test1(A);
end
toc
tic
for k = 1:20
P = test2(A);
end
toc
function P = test1(A)
rowdest = toeplitz(1:size(A, 1), [1, repelem(size(A, 1)+1, size(A, 2)-1)]);
P = accumarray(rowdest(:), A(:));
P = P(1:end-1);
function P = test2(A)
n = size(A, 1);
P = zeros(n, 1);
for k = 1:n
P(k) = sum(diag(A, 1-k));
end
Matlab 2016b/64, Win7, Core2Duo:
Elapsed time is 1.139792 seconds. % Toeplitz
Elapsed time is 0.182293 seconds. % Loop
I could not estimate, if the overhead for the loops or for creating the large index matrix are more expensive. But this short test seems, like the loop is efficient.
  3 comentarios
Jan
Jan el 27 de Feb. de 2017
@Lenovo: I share your preference for smart commands and clever solutions. This dull loop does not really satisfy me. But it is simple and fast.
Guillaume
Guillaume el 27 de Feb. de 2017
The dull loop is also the simplest to understand, which I'd actually value over speed and conciseness. It's immediately clear what it does without having to do any mental gymnastic.
Another version of the loop, in my opinion even clearer (albeit probably slightly slower):
arrayfun(@(d), sum(diag(A, 1-d)), 1:size(A, 1))

Iniciar sesión para comentar.


Guillaume
Guillaume el 25 de Feb. de 2017
A = reshape(1:30, 5, 6) %demo data
rowdest = toeplitz(1:size(A, 1), [1, repelem(size(A, 1)+1, size(A, 2)-1)]);
P = accumarray(rowdest(:), A(:));
P = P(1:end-1)
  2 comentarios
Stephen23
Stephen23 el 25 de Feb. de 2017
Or without repelem:
>> A = randi(9,4,4)
A =
8 1 6 8
4 2 1 1
3 9 3 1
4 9 4 2
>> X = toeplitz(2:1+size(A,1),[2,ones(1,size(A,2)-1)]);
>> V = accumarray(X(:),A(:));
>> V = V(2:end)
V =
15
17
12
4
Jan
Jan el 25 de Feb. de 2017
Editada: Jan el 25 de Feb. de 2017
@Guillaume: Your solution is nice and Matlabish. I could not predict, if it is faster or slower than a simple loop, therefore I tried it.
After the measurement, I assume the creation of the large index matrix needs more time than the loop overhead costs.

Iniciar sesión para comentar.


Andrei Bobrov
Andrei Bobrov el 25 de Feb. de 2017
Editada: Andrei Bobrov el 28 de Feb. de 2017
P = sum(spdiags(A.',0:size(A,1)-1)).';
  2 comentarios
Orongo
Orongo el 26 de Feb. de 2017
Given it is a matrix manipulation and it is Matlab, I'm convinced there are clever solutions out there handling this type of calculations.
spdiags looks promising, however if a diagonal is zero I must have it return as zero so number of rows in the result matches number of rows in the matrix.
Andrei Bobrov
Andrei Bobrov el 26 de Feb. de 2017
Editada: Andrei Bobrov el 28 de Feb. de 2017
[EDIT]
I'm corrected. Please read about spdiags.

Iniciar sesión para comentar.

Categorías

Más información sobre Sparse Matrices en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by