What's wrong in this code? why is this not displaying whole matrix?and how to sum whole matrix?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Aimen Mujahid
el 22 de Feb. de 2017
Comentada: Aimen Mujahid
el 22 de Feb. de 2017
M=input('Enter number of manufacturers'); D=input('Enter number of distributers'); O=1; T=1; R=1; Z=1; for m=1:M; for d=1:D; Cmd=zeros(M:D); Cmd(m,d)=input('Enter traveling cost for manufacturer to distributer'); disp(Cmd); end end
0 comentarios
Respuesta aceptada
Rahul Kalampattel
el 22 de Feb. de 2017
Editada: Rahul Kalampattel
el 22 de Feb. de 2017
You're overwriting the matrix Cmd every iteration because of the line Cmd=zeros(M:D). Take it outside of both for loops.
M=input('Enter number of manufacturers: ');
D=input('Enter number of distributers: ');
O=1; T=1; R=1; Z=1;
Cmd=zeros(M:D);
for m=1:M
for d=1:D
Cmd(m,d)=input('Enter traveling cost for manufacturer to distributer: ');
disp(Cmd);
end
end
To sum over all the elements of the matrix you can use sum(Cmd(:)).
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!