Question: MATLAB - (char) Nx3 array of RNA codons - (char) Nx3 array of RNA codons - (char) 1xM vector of characters with regards to the
MATLAB

- (char) Nx3 array of RNA codons - (char) Nx3 array of RNA codons - (char) 1xM vector of characters with regards to the degree of mutation of a cell Function Description: he reference RNA: - When there are no differences at all, the output should be 'identical' - When no more than half of codons present a single difference, the output should be 'similar' - When any of the codons (rows) presents two differences but none presents three differences, the output should be 'transitional' - When any of the codons (rows) presents three differences, the output should be 'mutant' - When half of the codons (rows) or more present at least one difference, the output should be 'mutant' - No prior knowledge of gene expression is necessary to solve this problem, but if you want to learn more about it: https://en.wikipedia.org/wiki/Gene\#Gene_expression - You may assume that N will always be an even number Examples rna =[GCU;ACG;GAG;CUU;CGG;AGC]; ref =[GCU;ACG;GAG;CUU;CGG;AGC]; out = mutants (rna, ref) % out = "identical" =[GCU;ACG;GAG;CUU]; ref =[GCU;AUG;GAG;CAU]; out = mutants(rna,ref) % out = "mutant
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
