]> AND Private Git Repository - Cipher_code.git/blob - Chaotic_code/skewtententierperturbed.m
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
adding of the chaotic cipher code
[Cipher_code.git] / Chaotic_code / skewtententierperturbed.m
1 function y=skewtententierperturbed(x,p,Q)\r
2 % x : initial condition\r
3 % p: control parameter\r
4 % N:precision\r
5 if x<=p\r
6        y=ceil(Q*(x/p));\r
7     else \r
8     y=floor(Q*((Q-x)/(Q-p)))+1;\r
9 end\r