# doc-cache created by Octave 4.0.0
# name: cache
# type: cell
# rows: 3
# columns: 4
# name: <cell-element>
# type: sq_string
# elements: 1
# length: 10
stk_is_lhs


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 666
 STK_IS_LHS tests if a given set of points forms a LHS

 CALL: OK = stk_is_lhs (X, N, DIM, BOX)

    tests if X is a Latin Hypercube Sample (LHS) of size N, over the hyper-
    rectangle BOX of dimension DIM. The result OK is true if X is a LHS and
    false otherwise.

 CALL: OK = stk_is_lhs (X, N, DIM)

    tests if X is a Latin Hypercube Sample (LHS) of size N, over the hyper-
    rectangle [0; 1]^DIM.

 CALL: OK = stk_is_lhs (X)

    tests if X is a Latin Hypercube Sample (LHS). Both the size N and the
    number DIM of factors are inferred from X.

 All three calling syntaxes accept both matrix-type inputs or data structures
 (with an 'a' field) for X.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 54
 STK_IS_LHS tests if a given set of points forms a LHS



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 18
stk_isequal_tolabs


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 775
 STK_ISEQUAL_TOLABS tests approximate equality of two matrices or structures.

 CALL: BOOL = stk_isequal_tolabs(A, B, TOLABS)

   returns true if A and B are numeric arrays of the same size, such that for
   any pair (a, b) of corresponding entries,

      abs(b - a) <= TOLABS.                                                (1)

   For numeric array, the function returns false is either

    * the array don't have identical sizes, or
    * the array have identical sizes but (1) doesn't hold.

   If A and B are structures with the same list of fieldnames, the function
   works recursively on the fields, and returns true iff all the fields are
   approximately equal.

 CALL: b = stk_isequal_tolabs(a, b)

   uses the default value 1e-8 for TOLABS.

 See also isequal.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 77
 STK_ISEQUAL_TOLABS tests approximate equality of two matrices or structures.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 18
stk_isequal_tolrel


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 837
 STK_ISEQUAL_TOLREL tests approximate equality of two matrices or structures.

 CALL: BOOL = stk_isequal_tolrel(A, B, TOLREL)

   returns true if A and B are numeric arrays of the same size, such that for
   any pair (a, b) of corresponding entries,

      abs(b - a) <= TOLABS,                                                (1)

   where

      TOLABS = max(max(A(:)), max(B(:))) * TOLREL.

   For numeric array, the function returns false is either

    * the array don't have identical sizes, or
    * the array have identical sizes but (1) doesn't hold.

   If A and B are structures with the same list of fieldnames, the function
   works recursively on the fields, and returns true iff all the fields are
   approximately equal.

 CALL: b = stk_isequal_tolrel(a, b)

   uses the default value 1e-8 for TOLREL.

 See also isequal.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 77
 STK_ISEQUAL_TOLREL tests approximate equality of two matrices or structures.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 19
stk_test_dfbinaryop


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 25
 STK_TEST_DFBINARYOP ...



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 24
 STK_TEST_DFBINARYOP ...





