Q:

DNA is a double stranded helical polymer that contains basic genetic information in the form of patterns of nucleotide bases. The patterns of the base molecules A, T, C, and G encode the genetic information

0

DNA is a double stranded helical polymer that contains basic 

genetic information in the form of patterns of nucleotide bases. The 

patterns of the base molecules A, T, C, and G encode the genetic 

information. Construct a cell array to store some DNA sequences as 

strings; such as

TACGGCAT

ACCGTAC

and then sort these alphabetically. Next, construct a matrix to store 

some DNA sequences of the same length and then sort them 

alphabetically.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

>> strings = {'TACGGCAT','ACCGTAC'};

>> sort(strings)

ans = 

 'ACCGTAC' 'TACGGCAT'

>> mat = ['TACCGGCAT';'ACCGTACGT'];

>> sortrows(mat)

ans =

ACCGTACGT

TACCGGCAT

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now