Code for elements in equation to create a matrix
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
lo
el 16 de Mzo. de 2014
Respondida: Muhammad Tabish Bilal
el 22 de Abr. de 2021
D is a 1x3 matrix
f is a 3x3 matrix
I want to create a matrix of A by the following equation:
for j=1:3
for i=1:3
A(i)=(sum(D(j).*f(i,j)))^-1;
end
end
But it turns out that the answer is wrong
What should be the correct code of this equation?
0 comentarios
Respuesta aceptada
Mischa Kim
el 16 de Mzo. de 2014
Lo, no need to use loops:
A = 1./(f*D)
Make sure that D is a column vector.
1 comentario
Más respuestas (1)
Muhammad Tabish Bilal
el 22 de Abr. de 2021
for counter1= 1: 13 % counter for the rows of intended matrices
for counter2= 1 : 13 % counter for coloumns of intended matrices
SMO(counter1,counter2) = counter1+counter2; % here you may use the equation you want to drive a matrices from but keep in mind it should be a column matrices using the same counter of inner loop
end
end
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!