photo

nik hamizah hanif


Aktiv seit 2015

Followers: 0   Following: 0

Statistik

  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


CONVERT DNA SEQUENCE INTO COMPLEX NUMBER
Now I have to convert the DNA sequence into complex number. what i did was : s=randseq(20) % to have random sequence of D...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
How to convert a nucleotide sequence data into complex number form such that base A= 1+i, G=1-i, C= -1-i and T=-1+i
have you found how to do this? function J = convert2complex(S) I = nt2int(S); J = nan(size(I)); J(I == 1) = 1+1i; ...

mehr als 9 Jahre vor | 0