avoiding nested for loops for matrix assignment
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
JAMMI ASHOK
el 15 de Oct. de 2020
Comentada: KSSV
el 15 de Oct. de 2020
Hi,
I am a beginner to matlab. Can you please tell me how to avoid using nested for loops in matlab.
THis piece of code is taking lot of space in my hard drive and time.
for i = 1:10000
for j = 1:10000
a(i,j) = i+j
end
end
0 comentarios
Respuesta aceptada
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!