<< reset SYMSCI Toolbox toDouble >>

SYMSCI Toolbox >> SYMSCI Toolbox > rows

rows

number of rows of a matrix of symbolic scalars

Calling Sequence

r = rows( A )

Arguments

A

matrix of symbolic scalars

r

non-negative integer

Description

Returns the number of rows r of a matrix A.

Examples

// create a (3,4)-matrix
M = %(Mat("e",3,4))

// number of rows in M
rows(M)

// number of cols in M
cols(M)

// number of elements in M
elems(M)

// clean up
reset();
clear M;

See Also

Authors

Bibliography

SymEngine: C++ library for fast symbolic manipulation.


Report an issue
<< reset SYMSCI Toolbox toDouble >>