I have a data set(x,y,z) corresponding to a hemisphere, to which I want to add some controlled noise (random values) to make the x,y,z values diverge.
data = Flatten[ Table[{i, j, i^2 + j^2}, {i, -10, 10, 1}, {j, -10, 10, 1}], 1]
The above is a 3 coordinate set (x,y,z) values for a hemisphere. How do I add random noise to it?
Thank you

Flatten[ Table[{i, j, i^2 + j^2 + RandomReal[{-10, 10}]}, {i, -10, 10, 1}, {j, -10, 10, 1}], 1];? – Dr. belisarius Jan 21 '13 at 04:18noisydata = # + RandomReal[5, 3] & /@ data;? – kglr Jan 21 '13 at 04:30z– Dr. belisarius Jan 21 '13 at 04:47