-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDNA_xor.m
35 lines (17 loc) · 1.31 KB
/
DNA_xor.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
% DNA xor function
% -----------------------------------------------------------------------------------------------------------------------------------
% Function for DNA xor operation
function b = DNA_xor(d,c)
% -----------------------------------------------------------------------------------------------------------------------------------
% STEP 1:Ceating an empty string array
% -----------------------------------------------------------------------------------------------------------------------------------
% STEP 2:DNA Xor table
% -----------------------------------------------------------------------------------------------------------------------------------
% -----------------------------------------------------------------------------------------------------------------------------------
% -----------------------------------------------------------------------------------------------------------------------------------
% -----------------------------------------------------------------------------------------------------------------------------------
% STEP 3: DNA Xor ouput
b=[b,k];
end
end
% -----------------------------------------------------------------------------------------------------------------------------------