8 lines
172 B
Matlab
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
|