Least significant bit
c = getlsb(a)
c = getlsb(a)
returns the value of the
least significant bit in a
as a u1,0
.
a
can be a scalar fi
object
or a vector fi
object.
getlsb
only supports fi
objects
with fixed-point data types.
The following example uses getlsb
to find
the least significant bit in the fi
object a.
a = fi(-26, 1, 6, 0); c = getlsb(a) c = 0 DataTypeMode: Fixed-point: binary point scaling Signedness: Unsigned WordLength: 1 FractionLength: 0
You can verify that the least significant bit in the fi
object a is 0
by
looking at the binary representation of a.
disp(bin(a)) 100110
bitand
| bitandreduce
| bitconcat
| bitget
| bitor
| bitorreduce
| bitset
| bitxor
| bitxorreduce
| getmsb