/usr/share/freemat/help/text/bin2int.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 14 15 16 17 18 | BIN2INT BIN2INT Convert Binary Arrays to Integer
Usage
Converts the binary decomposition of an integer array back
to an integer array. The general syntax for its use is
y = bin2int(x)
where x is a multi-dimensional logical array, where the last
dimension indexes the bit planes (see int2bin for an example).
By default, the output of bin2int is unsigned uint32. To
get a signed integer, it must be typecast correctly. A second form for
bin2int takes a 'signed' flag
y = bin2int(x,'signed')
in which case the output is signed.
|