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
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:8| Question number:32.8
All Answers
total answers (1)
>> 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