How to find the product of each element of a matrix by itself and by the other elemets at the same row?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Matt Talebi
am 27 Mär. 2015
Kommentiert: Andrei Bobrov
am 31 Mär. 2015
input:
x = [a,b,c;
d,e,f]
output:
y = [a^2,a*b,a*c,b^2,b*c,c^2;
d^2,d*e,d*f,e^2,e*f,f^2]
0 Kommentare
Akzeptierte Antwort
Andrei Bobrov
am 27 Mär. 2015
Bearbeitet: Andrei Bobrov
am 31 Mär. 2015
EDIT
[n1,n2] = ndgrid(1:size(x));
y = x(:,nonzeros(tril(n1))).*x(:,nonzeros(tril(n2)));
3 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!