Multiplying two vectors to form a matrix

3 vues (au cours des 30 derniers jours)
Nikola Segedin
Nikola Segedin le 25 Fév 2022
Modifié(e) : Jan le 25 Fév 2022
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.

Réponse acceptée

Jan
Jan le 25 Fév 2022
Modifié(e) : Jan le 25 Fév 2022
z = sqrt(x .^ 2 + y.' .^ 2)
But, of course, this does not match "multiply them". If you want a multiplication:
x .* y.'
[EDITED] For Matlab versions < R2016b:
z = sqrt(bsxfun(@plus, x.'.^2, y.^2))
  2 commentaires
Nikola Segedin
Nikola Segedin le 25 Fév 2022
Multiplication is not the right word, I agree. I've tried this and all I got is "Error using plus, Matrix dimensions must agree.".
Jan
Jan le 25 Fév 2022
See my comment under Walter's answer.

Connectez-vous pour commenter.

Plus de réponses (2)

KSSV
KSSV le 25 Fév 2022
x = rand(601,1) ;
y = rand(601,1) ;
iwant = sqrt(x.^2+y'.^2) ;
size(iwant)
ans = 1×2
601 601

Walter Roberson
Walter Roberson le 25 Fév 2022
D = sqrt(x.'.^2 + y.^2)
  4 commentaires
Jan
Jan le 25 Fév 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))
Nikola Segedin
Nikola Segedin le 25 Fév 2022
I'm using R2010b. Thank you, this works for me!

Connectez-vous pour commenter.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Produits


Version

R2010b

Community Treasure Hunt

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

Start Hunting!

Translated by