Convert decimal number to a binary number sequence.
[B] = NL_S_Dec2Bin(D,N)
Value.
Numbers of bits.
Binary sequence.
NL_S_Dec2Bin convert a decimal number D to the corresponding binary sequence number B=[0 1 1 ...]. N provides the number of bits.
de=100; biNum=8;//number of bits [bi]=NL_S_Dec2Bin(de,biNum)//application of NL_S_Dec2Bin //|128|64|42|16|8|4|2|1| -> 0:255