Multiplying each value of a vector with the corresponding value in another vector?
16 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Finn Farnan
el 13 de Nov. de 2020
Comentada: Star Strider
el 13 de Nov. de 2020
I have 4 vectors E,A,alpha,temp (each 21x1)
I want to carry out the following equation:
theta = E*A*alpha*temp [-1 ;1]
and theta be a vector where the first value is: theta(1) = E(1)*A(1)*alpha(1)*temp(1) * [-1;1]
and theta(n) = E(n)*A(n)*alpha(n)*temp(n) * [-1;1] etc.
Do I use for loop, how would I got about this?
Thank you in advance.
0 comentarios
Respuesta aceptada
Star Strider
el 13 de Nov. de 2020
Use element-wise multiplication. If all the other vectors are column vectors, the [-1 1] vector must be a row vector:
theta = E.*A.*alpha.*temp*[-1 1]
2 comentarios
Más respuestas (2)
Setsuna Yuuki.
el 13 de Nov. de 2020
Editada: Setsuna Yuuki.
el 13 de Nov. de 2020
with loop for
for n = 1:length(E)
theta(:,n) = E(n)*A(n)*alpha(n)*temp(n) * [-1;1]
end
or can be:
theta(n) = E.*A.*alpha.*temp(n).*[-1;1]
2 comentarios
Setsuna Yuuki.
el 13 de Nov. de 2020
Editada: Setsuna Yuuki.
el 13 de Nov. de 2020
My error in the code:
theta(n) = E.*A.*alpha.*temp(n).*[-1;1]
%is
theta= E.*A.*alpha.*temp.*[-1;1]
loop:
theta(:,n) = ...
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!