generate random negative numbers

I thank if some one can help in this, how can i generate a matrix of some size for ex 100x100 with in the range of [-0.01,0] and that too with decimal values contained in it like -0.001,-0.0056 like that and also for the ranges like [-60,-30] with decimal values like -58.254,-56.985 and only 3 decimal values after the point.

5 comentarios

PK
PK el 26 de En. de 2013
is this possible with randint
Image Analyst
Image Analyst el 26 de En. de 2013
The answer to this is the example to rand() in the help.
PK
PK el 28 de En. de 2013
@ Image Analyst no rand did not work for negative numbers.
Image Analyst
Image Analyst el 28 de En. de 2013
Sorry but you are wrong. Look at Greg's code below, which is the same as the help example I referred you to. You can certainly have "a" and "b" be negative numbers. Why do you think you can't? No one said they had to be positive.

Iniciar sesión para comentar.

 Respuesta aceptada

Matt J
Matt J el 28 de En. de 2013
n=3; %number of decimal places
A = randi([-60,-30]*10^n,[100,100])/10^n;

3 comentarios

PK
PK el 28 de En. de 2013
Super answer Matt J
Senait Senay
Senait Senay el 3 de En. de 2014
thanks this was helpful!!
Edgar Andres Parra Rucaurte
Edgar Andres Parra Rucaurte el 27 de Oct. de 2016
Thanks Matt.

Iniciar sesión para comentar.

Más respuestas (1)

Greg Heath
Greg Heath el 26 de En. de 2013

2 votos

x = a + (b-a)*rand(m,n);
Hope this helps.
Thank you for formally accepting my answer.
Greg

Categorías

Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.

Preguntada:

PK
el 26 de En. de 2013

Comentada:

el 27 de Oct. de 2016

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by