Re: Normally Distributed Random Matrix
- To: mathgroup at smc.vnet.net
- Subject: [mg77604] Re: Normally Distributed Random Matrix
- From: dh <dh at metrohm.ch>
- Date: Wed, 13 Jun 2007 07:46:58 -0400 (EDT)
- References: <f4lb7t$g0e$1@smc.vnet.net>
Hi Amit, if you type A and get back: RandomArray[NormalDistribution[], {500, 500}], then clearly the command has not been executed. Either NormalDistribution or RandomArray or both are not defined. Check by "??NormalDistribution" and "??RandomArray" to be sure these are defined. Otherwise, I guess that "<< Statistics`NormalDistribution`" did not work. hope this helps, Daniel amitsoni.1984 at gmail.com wrote: > Hi, > > I want to create a normally distributed random matrix in Mathematica. > I'm using the following code in Mathematica 5.2: > > ------------- code ----------------------------- > << Statistics`NormalDistribution` > n = 500; > A = RandomArray[NormalDistribution[], {n, n}] > ------------------------------------------------ > > But it is not working even though it worked when I did it earlier on > Linux. When I enter A it just gives: > > ------------------------------------------------ > A > RandomArray[NormalDistribution[], {500, 500}] > ------------------------------------------------ > > Can anyone help me with this? > > Thank you, > Amit > >