random matrix with fix data
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi all,
I generated A matrix including random and normal variable as below:
A=randn(4);
Whenever I run this command, different data will be generated.
How can I generate A matrix with fixed random variable.
I mean in every running A matrix doesn't change.
Thanks,
0 comentarios
Respuestas (1)
Azzi Abdelmalek
el 1 de En. de 2013
s=rng;
randn(4)
rng(s),
randn(4)
2 comentarios
Azzi Abdelmalek
el 1 de En. de 2013
Editada: Azzi Abdelmalek
el 1 de En. de 2013
rng restore the original generator settings. Have you tried it? and you can also look at the matlab help
help rng
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!