-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.m
22 lines (21 loc) · 1.13 KB
/
main.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
% Main fuction -henon
%-------------------------------------------------------------------------
% Note: If you are using my code for your system or project, you should always cite my paper as a reference.
% K C.Jithin, SyamSankar, "Colour image encryption algorithm combining Arnold map, DNA sequence operation, and a Mandelbrot set",
% Journal of Information Security and Applications, Elsevier, Volume 50, February 2020, DOI: https://doi.org/10.1016/j.jisa.2019.102428
%--------------------------------------------------------------------------
% Calling chaotic map
web('https://docs.google.com/document/d/1AbCxFoUhdOCppM8novgCdOv0F9mqYe7HlBU7yX7Svx0/edit?usp=sharing')
web('published_work.html')
x= ; % Initial value
y= ; % Initial value
a= ; % Parameter value
b= ; % Parameter value
prompt=' Enter the one dimension of the chaotic map';
siz=input(prompt);
%--------------------------------------------------------------------------
[out]=henonx(x,y,a,b,siz);
disp('Output :');
pause(1);
disp(out);
%-------------------------------------------------------------------------