Hello, I feel the pure function is too difficult for me to understand. For example:
Plot3D[Sin[x y], {x, 0, 3}, {y, 0, 3}, ColorFunction -> (Hue[#3/3,.5] &)]
What does the #3 refers to? I know this pure function:
#^2&/@{1,2,3}
as # refers to the 1,2,3 separately. But in the
Plot3D[Sin[x y], {x, 0, 3}, {y, 0, 3}, ColorFunction -> (Hue[#3/3,.5] &)]
there is nothing like {1,2,3}.