<< Vec SYMSCI Toolbox cols >>

SYMSCI Toolbox >> SYMSCI Toolbox > Zeros

Zeros

matrix of symbolic zeros

Calling Sequence

B: Zeros(A)
B: Zeros( r, c )

Arguments

A

matrix of symbolic scalars

r

non-negative integer

c

non-negative integer

B

matrix of symbolic zeros

Description

Zeros( A )

Returns a matrix of zeros with the dimensions of the matrix A.

Zeros( r, c )

Returns a matrix of zeros with r rows and c columns.

Examples

// create (3,5)-matrix of zeros
A = %(Zeros(3,5))

// a matrix of zeros with dimension of A
Zeros(A)

// clean-up
reset();
clear A;

See Also

Authors

Bibliography

SymEngine: C++ library for fast symbolic manipulation.


Report an issue
<< Vec SYMSCI Toolbox cols >>