TP-probabilites/TP2/coeff_compression_texte.m

8 lines
172 B
Mathematica
Raw Normal View History

2023-06-10 19:01:20 +00:00
## Created: 2020-11-10
function coeff_compression = coeff_compression_texte(texte, texte_encode)
coeff_compression = length(texte)*8/length(texte_encode);
endfunction