hold value of multiplication of two scalar vector
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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.
0 Kommentare
Siehe auch
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!