-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
md.m
20 lines (12 loc) · 960 Bytes
/
md.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
% Mandelbrotset Function
% -----------------------------------------------------------------------------------------------------------------------------------
% Function for calculate mandelbrot set by using Modified mandelbrot set
function W=md()
% -----------------------------------------------------------------------------------------------------------------------------------
% STEP 1:Initial values for modified mandelbrot set
c% -----------------------------------------------------------------------------------------------------------------------------------
% STEP 2:Generation of original mandelbrot set
% -----------------------------------------------------------------------------------------------------------------------------------
% STEP 3:Generation of modified mandelbrot set
end
% -----------------------------------------------------------------------------------------------------------------------------------