Random number generator for matrix

6 visualizaciones (últimos 30 días)
N/A
N/A el 29 de Jul. de 2022
Comentada: Abderrahim. B el 30 de Jul. de 2022
My goal is to create a random number generator for a matrix of size 3x3, for n matrices (meaning as many n matrices as I designate) that will produce random numbers within the bounds [a,b] for the main diagonal of the matrix (elements 11, 22 and 33 in the matrix).
I invision the random generator, as described above, to generate a sample of something like:
matrix 1:
[2, 0, 0;
0, 90, 0;
0 , 0 ,1]
matrix 2:
[3, 0, 0;
0, 12, 0;
0 , 0 ,63]
matrix 3:..
matrix n
I appreciate any and all help with this.

Respuesta aceptada

Abderrahim. B
Abderrahim. B el 29 de Jul. de 2022
Editada: Abderrahim. B el 29 de Jul. de 2022
Hi!
Perhaps this:
bounds = [10 20] ; % [a b ]
randA = diag(diag(randi(bounds, 3,3)))
randA = 3×3
13 0 0 0 13 0 0 0 19
Hope this helps
  4 comentarios
N/A
N/A el 29 de Jul. de 2022
Appreciate your help (and genius) greatly.
Matthew
Abderrahim. B
Abderrahim. B el 30 de Jul. de 2022
My pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices 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!

Translated by