Please enable JavaScript.
Coggle requires JavaScript to display documents.
2.資料 - Coggle Diagram
2.資料
資料儲存
浮點數
sign
shifter
exponent
bias(位移量) 2^(m-1)-1
fixed-point number
mantissa
IEEE 754
single precision
1-8-23
excess-127
double precision
1-11-52
excess-1023
文字
ASCII,1byte
Unicode,4byte
中文
big-5,繁中,2byte
GB碼,簡中,2byte
影像
色深
全彩,24bit
bitmap graphics
破壞性壓縮
JPEG
非破壞性壓縮
PNG
GIF
vector graphics
AI
WMF
EMF
資料運算
移位運算
邏輯移位運算
simple right/left shift
circular logical shift/rotate operation
算術移位運算
arithmetic right shift=/2
保留符號位元,複製符號位元至下一個
arithmetic left shift=*2
丟棄符號位元,若新的符號位元與舊的不同則overflow
odd/even parity check
Hamming code(有空補)