Create and initialize a multi-precision matrix filled with zeros
rop = mps_zeros( prec ) rop = mps_zeros( m1, n1, prec ) mps_zeros( rop )
Overloaded usage:
rop = zeros( op )
multi-precision matrix
integers
Create and initialize a multri-precision matrix filled with the value 0
Create and initialize a scalar of precision
prec
initialized to 0.
Create and initialize a matrix of size (m1,n1)
with precision prec
filled with zeros.
Set every element of rop
to 0.
Overloaded Scilab primitive zeros(). Create a multi-precision
matrix the same size and precision as op
filled with zeros.
The precision must be two bits or higher.
mpsA = mps_zeros(100) mpsA = mps_zeros(10,10,100) //Set every elements of mpsB to 1. mpsB = mps_init(10,10,100) mps_zeros(mpsB) //Overloaded usage mpsA = zeros(mpsB) | ![]() | ![]() |