matlab中如何将字符串显示为8位ascii码

比如我输入a输出 01100001
2024-12-02 10:21:37
推荐回答(1个)
回答1:

DEC2BIN Convert decimal integer to a binary string.
    DEC2BIN(D) returns the binary representation of D as a string.
    D must be a non-negative integer smaller than 2^52.
 
    DEC2BIN(D,N) produces a binary representation with at least
    N bits.
 
    Example
       dec2bin(23) returns '10111'

对字符'a',调用如下:

dec2bin('a', 8)