Function: blockplot
BLOCKPLOT Plot block coefficients
  Usage: blockplot(p,c);
         blockplot(p,F,c);
         blockplot(p,F,c,cola);

  Input parameters:
        p     : JAVA object of the class net.sourceforge.ltfat.SpectFrame.
        F     : Frame object.
        c     : Block coefficients.
        cola  : (Optional) overlap from previous block.

  Output parameters:
        cola  : Overlap to the next block.

  BLOCKPLOT(p,F,c) appends the block coefficients c to the running 
  coefficient plot in p. The coefficients must have been obtained by
  c=blockana(F,...). The format of c is changed to a rectangular 
  layout according to the type of F. p must be a Java object with a
  append method.  

  cola=BLOCKPLOT(p,F,c,cola) does the same, but adds cola to the 
  first respective coefficients in c and returns last coefficients from
  c. This is only relevant for the sliced window blocking approach.

  BLOCKPLOT(p,c) or BLOCKPLOT(p,[],c) does the same, but expects c 
  to be already formatted matrix of real numbers. The data dimensions
  are not restricted, but it will be shrinked or expanded to fit with
  the running plot.

Url: http://ltfat.github.io/doc/blockproc/blockplot.html

Package: ltfat