(* SCHEMA mathematical_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
[Top Level Definitions] [Exit]
Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:13:59-04:00