I need to randomly generate a 10x10 matrix with every element being a number between 1 and -1, I cannot figure out from the handbook how to place a limit on a randomly generated matrix. I would greatly appreciate an explanation or simply a direction to where I can find my answer. Thank you very much.
Dear Joseph,
I'll assume you want a uniform distribution between -1 and 1. What about this?
RandomReal[{-1, 1}, {10, 10}]
Cheers,
Marco
PS: Sorry Yehuda, your answer only showed up after I posted. That seems to be a common problem. Sorry.