Overview Schemas Index

MATHEMATICAL_FUNCTIONS_SCHEMA (jsdai.SMathematical_functions_schema)


FUNCTION make_basic_sparse_matrix
          (index_base : zero_or_one, shape : LIST [1:?] OF positive_integer, operands : LIST [3:3] OF maths_function, default_entry : maths_value, order : ordering_type) : basic_sparse_matrix;

RETURN (basic_sparse_matrix (default_entry, order)
    || explicit_table_function (index_base, shape)
      || maths_function()
        || generic_expression()
    || multiple_arity_generic_expression (operands) );

END_FUNCTION; -- make_basic_sparse_matrix

public class FMake_basic_sparse_matrix
          public static Value run(SdaiContext _context, Value index_base, Value shape, Value operands, Value default_entry, Value order)