hold value of multiplication of two scalar vector

4 Ansichten (letzte 30 Tage)
Arijet Sarker
Arijet Sarker am 24 Jun. 2018
Bearbeitet: Stephen23 am 24 Jun. 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.

Antworten (1)

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

Kategorien

Mehr zu Gamma Functions finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by