Build a matrix for each loop output
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Helder Maranhão
el 5 de Mzo. de 2022
Comentada: Helder Maranhão
el 6 de Mzo. de 2022
Dear all
I would like to store each output from a loop to a matrix M.
I have some dificulties due to indexing.
Could someone plese give me a help on this problem?
Thank you very much
2 comentarios
Matt J
el 5 de Mzo. de 2022
Yes, we can help, but please first post your code in copy/pastable form.
Respuesta aceptada
Matt J
el 6 de Mzo. de 2022
M=zeros(3,4);
for j=1:3
As_prov=As.Asst>Asneg(j);
i=find(As_prov,1,'first')
M(j,1)=As.n1(i);
M(j,2)=As.dbL1(i);
M(j,3)=As.n2(i);
M(j,4)=As.dbL2(i);
end
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!