4 lines
118 B
Text
4 lines
118 B
Text
arrayFun[m_Integer,n_Integer]:=Module[{array=ConstantArray[0,{m,n}]},
|
|
array[[1,1]]=RandomReal[];
|
|
array[[1,1]]
|
|
]
|