hold value of multiplication of two scalar vector

1 次查看(过去 30 天)
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.

回答(1 个)

Stephen23
Stephen23 2018-6-24
编辑:Stephen23 2018-6-24
Simpler (for R2016b and later):
gamma(:) .* tao
or for older versions:
bsxfun(@times,gamma(:),tao)

类别

Help CenterFile Exchange 中查找有关 Gamma Functions 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by