Overview Schemas Index

MATHEMATICAL_FUNCTIONS_SCHEMA (jsdai.SMathematical_functions_schema)


FUNCTION make_regular_table_function
          (index_base : zero_or_one, shape : LIST [1:?] OF positive_integer, operand : maths_function, first : INTEGER, increments : LIST [1:?] OF INTEGER) : regular_table_function;

RETURN (regular_table_function (increments)
    || linearized_table_function (first)
      || explicit_table_function (index_base, shape)
        || maths_function()
          || generic_expression()
      || unary_generic_expression (operand) );

END_FUNCTION; -- make_regular_table_function

public class FMake_regular_table_function
          public static Value run(SdaiContext _context, Value index_base, Value shape, Value operand, Value first, Value increments)