In some cases we need to apply functions to a set of ND-arrays. Let's look at this simple example.
A(:,:,1) = [1 2; 4 5];
A(:,:,2) = [11 22; 44 55];
B(:,:,1) = [7 8; 1 2];
B(:,:,2) = [77 88; 11 22];
A =
ans(:,:,1) =
   1   2 
   4   5 
ans(:,:,2) =
   11   22
   44   55
>&...