values of matrix change on each iteration
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
summyia qamar
el 15 de Dic. de 2016
if we want a matrix
A=[7x3] such that we iterate 100 times and its values chnage from 1 to 3 randomly on each iteration e.g
A=[1 1 1
2 1 3
1 2 1
3 3 2
3 1 2
1 1 1
2 1 3]
and in next iteration it changes again
0 comentarios
Respuesta aceptada
Stephen23
el 15 de Dic. de 2016
Editada: Stephen23
el 15 de Dic. de 2016
for k = 1:100
A = randi([1,3],7,3)
end
2 comentarios
Stephen23
el 16 de Dic. de 2016
Editada: Stephen23
el 16 de Dic. de 2016
"how this works": it generates a new random matrix in a loop, giving exactly what you requested.
"where is k in it to iterate?" I do not understand the question. The loop variable k is not used because it is not required to generate a new random matrix.
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!