Question: Using MATLAB, Write a function GeneCount() that will take in two string as the input arguments: the first is the source string, and the second
Using MATLAB,
Write a function GeneCount() that will take in two string as the input arguments: the
first is the source string, and the second as the pattern string. The function will count the
number of occurrence of the pattern in the source and return the count as the output
argument. An example test of the function:
>>source='GCTATAACGTATATATAT';
>>gene='ACG'
>>WordCount(source, gene)
ans =
1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
