Hello again, I am asking for your help to generate an array of 18 x 18 containing random complex numbers with a normal distribution,, I have made the next:
datos = Partition[Riffle[RandomVariate[NormalDistribution[], 18],
RandomVariate[NormalDistribution[], 18]], 2];
Apply[Plus, {#[[1]], #[[2]]*I} & /@ datos, 1] // MatrixForm
but don't know what steps to follow to get an array of 18 columns by 18 rows,
i hope that someone has a solution for this problem.