Sometimes it helps to write down the values of the first few loops, then find the pattern. The vector F (one entry per iteration) starts at the first f (let's call it f0). Then the second entry is f0*bins. Then f0*bins^2, etc. So F is f0*[1 bins bins^2 bins^3]...
and could be calculated as
F = f0 * bins .^ (0:z-1);
since bins^0 is 1.
Even before this, you were able compute the entire floor operation at once: floor(clip*bins/256). Now you just need to figure out how to multiply your P-element vector F by that 3D matrix MxNxP. bsxfun will do this sort of thing, but the dimensions need to match, or be exactly 1. So F must be 1x1xP instead of P. Then just sum the whole thing along the 3rd dimension.
binno = sum(bsxfun(@times, floor(clip*bins/256), reshape(F, [1 1 length(F)])), 3);
Just a note... this question would be more easily answered with your inputs defined at least by size. Even better is a few lines that generate sample data of the correct dimensions. Since there is none, I couldn't test the above code, so it's your responsibility to adapt it to your data.
clipis 3D,binnois a 2D matrix, andfandbinsare scalars? – Dedek Mraz Feb 26 at 17:56