hold value of multiplication of two scalar vector

2 vues (au cours des 30 derniers jours)
Arijet Sarker
Arijet Sarker le 24 Juin 2018
Modifié(e) : Stephen23 le 24 Juin 2018
gamma = [0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1] tao = [0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1]
for i = 1:10
for j = 1:10
lm = gamma(i) * tao(j)
end
end
I want all the values of gamma * tao in lm variable. But, I am only getting lm=1.

Réponses (1)

Stephen23
Stephen23 le 24 Juin 2018
Modifié(e) : Stephen23 le 24 Juin 2018
Simpler (for R2016b and later):
gamma(:) .* tao
or for older versions:
bsxfun(@times,gamma(:),tao)

Catégories

En savoir plus sur Gamma Functions 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!

Translated by