How can I divide each element of a vector by each of the elements of another vector in MATLAB?

21 vues (au cours des 30 derniers jours)
Say I have two vectors:
a= [ 1
2
3 ];
b=[4
5
6];
And I want
c= [1/4
2/4
3/4
1/5
2/5
3/5
1/6
2/6
3/6];
Is there a way to do this?
  1 commentaire
dpb
dpb le 8 Avr 2021
I'm undoubtedy overlooking the obvious but
cell2mat(arrayfun(@(i)a/b(i),1:numel(b),'UniformOutput',false))

Connectez-vous pour commenter.

Réponse acceptée

James Tursa
James Tursa le 8 Avr 2021
Modifié(e) : James Tursa le 8 Avr 2021
Assuming a and b are both column vectors, you can use automatic array expansion by transposing one of them and using element-wise divide:
c = a ./ b.'; % results in a 2D matrix
c = c(:); % turn 2D matrix into a column vector

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by