How to find non-zero indexes (or value) in row in matrix, and make taken results i and j elements of another matrix Dij?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Beibit Sautbek
le 21 Juil 2016
Modifié(e) : Stephen23
le 21 Juil 2016
I have a matrix : A =
1 0 0 4
1 0 3 4
1 2 0 4
1 2 3 4
I need to find the non-zero elements in every row of matrix A, and making them i(number of row) and j(number of column) of the matrix Dij(shown below).
Then find that element in matrix Dij, and make summation of values if it needs.
Dij =
0 22.2794 33.7859 45.0000
22.2794 0 15.4008 23.0367
33.7859 15.4008 0 14.9726
45.0000 23.0367 14.9726 0
For example, I need a code which will find all non zero values of every row, results of matrix A should be:
1 4
1 3 4
1 2 4
1 2 3 4
Then the values of every rows should be ij elements of Dij matrix. For example:
1 4==============> D(1,4)=45
1 3 4============> D(1,3)+D(3,4)=33.7859+14.9726
1 2 4============> D(1,2)+D(2,4)=22.2794+23.0367
1 2 3 4==========> D(1,2)+D(2,3)+D(3,4)=22.2794+15.4008+14.9726
Could anyone help me?
0 commentaires
Réponse acceptée
James Tursa
le 21 Juil 2016
E.g., using a loop:
m = size(A,1);
result = zeros(m,1);
for k=1:m
x = find(A(k,:));
for n=2:numel(x)
result(k) = result(k) + Dij(x(n-1),x(n));
end
end
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Resizing and Reshaping Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!