# Created by Octave 3.6.3, Wed Jan 09 09:27:57 2013 UTC <builder@localhost.localdomain>
# name: cache
# type: cell
# rows: 3
# columns: 5
# name: <cell-element>
# type: sq_string
# elements: 1
# length: 9
cell2cell


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 196
 -- Loadable Function:  cell2cell (C, DIM)
     Return a one-dimensional cell array, extending along dimension DIM,
     which contains the slices of cell array C vertical to dimension
     DIM.




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 80
Return a one-dimensional cell array, extending along dimension DIM,
which contai



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 9
partarray


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 488
 -- Loadable Function:  partarray (A, IDX, ...)
     Return a column cell array with subarrays of the A. Start and end
     indices of subarrays are given in the rows of IDX. IDX can be
     given for each dimension, empty IDX means no partitioning in the
     respective dimension. Order of returned subarrays: rows of IDX of
     some dimension are completely used before using the next row of
     IDX of the higher dimension.

     Does not work with structure arrays at the moment.




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 51
Return a column cell array with subarrays of the A.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 7
partint


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 658
 -- Loadable Function: P = partint(N)
     Calculate all integer partitions. Argument N be a positive number.
     A partition is the sum decomposition of integers.

     Example:
          partint(4)
     returns
          ans =
           4  0  0  0
           2  1  0  0
           0  2  0  0
           1  0  1  0
           0  0  0  1

     This means

          4 = 4 * 1
           = 2 * 1 + 1 * 2
           =         2 * 2
           = 1 * 1         + 1 * 3
           =                 1 * 4

     Note:

     partint(n) * [1:n]' == n

     Reference: Joerg Arndt: Algorithms for programmers
     (http://www.jjj.de), 2006.


   See also: partcnt




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 33
Calculate all integer partitions.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 6
sample


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 247
 -- Loadable Function: S = sample (M, N)
     Return M unique random integer values from 0..N-1, sorted in
     ascending order.

     Based on a code from Jon Bentley's "Programming Pearls", see
     `http://netlib.bell-labs.com/cm/cs/pearls/'.




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 45
Return M unique random integer values from 0.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 12
text_waitbar


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 1131
 -- Loadable Function:  text_waitbar (FRAC)
 -- Loadable Function:  text_waitbar (FRAC, MSG)
 -- Loadable Function:  text_waitbar (0, N)
     Display text-based waitbar/progress bar.

     This function is similar to the `waitbar' function but is a text,
     rather than graphical bar. The waitbar is filled to fraction FRAC
     which must be in the range [0, 1]. Values exactly equal to 0 or 1
     clear the waitbar.

     The optional message MSG sets the waitbar caption. If Octave is
     running in a smart terminal, the width is automatically detected,
     and MSG is displayed in the waitbar (and truncated if it is too
     long). Otherwise, MSG is not displayed and the width is
     initialized to a default of 50 characters, or it can be set to N
     characters with `text_waitbar (0, N)'. If no terminal is detected
     (such as when Octave is run in batch mode and output is
     redirected), no output is generated.

     Additional arguments are ignored for compatibility with the
     graphical counterpart of this function but there are no guarantees
     of perfect compatibility.

     See also: waitbar





# name: <cell-element>
# type: sq_string
# elements: 1
# length: 40
Display text-based waitbar/progress bar.





