matlab - bitget function for array input and array bit selection -
i can this
bitget(564,16:-1:1,'int16') to 16 bits int16 representation of 564. or do
bitget([564; 1235] ,3,'int16') to 3rd bits int16 representations of 564,1235 (output 2x1 vector)
unfortunately seem run error
bitget([564; 1235] ,16:-1:1,'int16') any suggestions (besides looping on elements either 1st or 2nd argument)?
Comments
Post a Comment