Multiplying two vectors to form a matrix
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello, I have two vectors x and y, both 601x1. I want to multiply them to form a matrix of 601x601, but the values inside the matrix have to be sqrt(x^2+y^2). How do I do this? Thanks.
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (2)
KSSV
am 25 Feb. 2022
x = rand(601,1) ;
y = rand(601,1) ;
iwant = sqrt(x.^2+y'.^2) ;
size(iwant)
0 Kommentare
Walter Roberson
am 25 Feb. 2022
D = sqrt(x.'.^2 + y.^2)
4 Kommentare
Jan
am 25 Feb. 2022
@Nikola Segedin: Which Matlab versionare you using? Since R2016b an "implicit expanding" is applied. For former versions:
D = sqrt(bsxfun(@plus, x.'.^2, y.^2))
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!