hold value of multiplication of two scalar vector

1 visualización (últimos 30 días)
Arijet Sarker
Arijet Sarker el 24 de Jun. de 2018
Editada: Stephen23 el 24 de Jun. de 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.

Respuestas (1)

Stephen23
Stephen23 el 24 de Jun. de 2018
Editada: Stephen23 el 24 de Jun. de 2018
Simpler (for R2016b and later):
gamma(:) .* tao
or for older versions:
bsxfun(@times,gamma(:),tao)

Categorías

Más información sobre Gamma Functions en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by