Hello Experts,
Could you please explain the below code as I am not able to understand the kind of output its giving.
data temp;
format length width height 6.2;
array dimms lenght width height;
do j=1 to 10;
length = 100;
width = 50;
height = 30;
do i = 1 to 3;
dimms [i] = dimms[i] + normal (0)*2;
end;
output;
end;
In the below output, why i am getting 2 "lenght" variable? What is the use of "normal (0)*2"?
Why only first Lenght variable getting all 100s for all 10 observations however the other variables "width" and "height" are getting calculated values?

Thanks