/usr/share/freemat/help/text/bitand.mdc is in freemat-help 4.0-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | BITAND BITAND Bitwise Boolean And Operation
Usage
Performs a bitwise binary and operation on the two arguments and
returns the result. The syntax for its use is
y = bitand(a,b)
where a and b are multi-dimensional unsigned integer arrays.
The and operation is performed using 32 bit unsigned intermediates. Note that if a
or b is a scalar, then each element of the other array is and'ed with
that scalar. Otherwise the two arrays must match in size.
|