Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有小数元素的矩阵。我想将此矩阵中的每个元素转换为分辨率为 8 的二进制。我应该使用什么函数?
使用dec2bin:
dec2bin
>> dec2bin([10; 100; 255], 8) ans = 00001010 01100100 11111111
第二个参数告诉它至少使用 N 位(N==8这里的位置)。
N==8