Hello,<br><br>I just spent a few minutes on figuring out how to use map-n-grids as there are no examples in the distribution or documentation.<br><br>Here is one example, here is one that accomplishes the following (in pseudo-code):<br>
<br>(map 'grid #'(lambda (x1 x2) (- x1 x2)) grid1 grid2)<br><br>(map-n-grids :sources `((,*array-3-4-double-float* ,(affi *array-3-4-double-float*))<br>            (,*array-3-4-double-float* ,(affi *array-3-4-double-float*)))<br>
         :combination-function #'(lambda (i x1 x2)<br>                       (print i)<br>                       (- x1 x2)))<br><br>In this example, I am not sure of the role of the first variable (I did not have more time to stare at map.list)<br>
<br>Mirko<br><br>