|
FUNCTION make_banded_matrix (index_base : zero_or_one, shape : LIST [1:?] OF positive_integer, source : maths_function, first : INTEGER, default_entry : maths_value, below : INTEGER, above : INTEGER, order : ordering_type) : banded_matrix; RETURN ( banded_matrix ( default_entry , below , above , order ) || linearized_table_function ( first ) || explicit_table_function ( index_base , shape ) || maths_function ( ) || generic_expression ( ) || unary_generic_expression ( source ) ) ; END_FUNCTION; -- make_banded_matrix |
|
public class FMake_banded_matrix public static Value run(SdaiContext _context, Value index_base, Value shape, Value source, Value first, Value default_entry, Value below, Value above, Value order) |