TP-probabilites/TP2/coeff_compression_texte.m
2023-06-10 21:01:20 +02:00

8 lines
172 B
Matlab

## Created: 2020-11-10
function coeff_compression = coeff_compression_texte(texte, texte_encode)
coeff_compression = length(texte)*8/length(texte_encode);
endfunction