Overview Schemas Index

MATHEMATICAL_FUNCTIONS_SCHEMA (jsdai.SMathematical_functions_schema)


FUNCTION make_strict_triangular_matrix
          (index_base : zero_or_one, shape : LIST [1:?] OF positive_integer, source : maths_function, first : INTEGER, default_entry : maths_value, lo_up : lower_upper, order : ordering_type, main_diagonal_value : maths_value) : strict_triangular_matrix;

RETURN (strict_triangular_matrix (main_diagonal_value)
    || triangular_matrix (default_entry, lo_up, order)
      || linearized_table_function (first)
        || explicit_table_function (index_base, shape)
          || maths_function()
            || generic_expression()
        || unary_generic_expression (source) );

END_FUNCTION; -- make_strict_triangular_matrix

public class FMake_strict_triangular_matrix
          public static Value run(SdaiContext _context, Value index_base, Value shape, Value source, Value first, Value default_entry, Value lo_up, Value order, Value main_diagonal_value)