bbfuncm

This function is not yet fully documented. This is a transcript of the text-formatted help.

bbfuncm  Get functions for computing matrix-matrix products
   [f,fH,arg]=bbfuncm(BB) returns functions handles for computing
   the matrix-matrix products A*X and A'*X, where A corresponds to
   the black-box matrix BB.

   To evaluate a product use feval:
     Y=feval(f,X,arg{:})   computes Y=A*X
     X=feval(fH,Y,arg{:})  computes X=A'*Y

   Use bbfunc if you only need to evaluate matrix-vector products.
   Although the functions returned by bbfuncm also handles this case,
   it may be less efficient.

   See also , bbfunc, bbsimplify, bbinline.