good use of 'hankel' function
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
s = 'AACTGAACG';
n = 3;
hifreq_correct = 'AAC';
assert(isequal(nGramFrequency(s,n),hifreq_correct))
ans =
[]
|
2 | Pass |
%%
s = 'dynamic routing service';
n = 2;
hifreq_correct = 'ic';
assert(isequal(nGramFrequency(s,n),hifreq_correct))
ans =
[]
|
3 | Pass |
%%
s = 'Your veracity is exceeded by your sagacity.';
n = 5;
hifreq_correct = 'acity';
assert(isequal(nGramFrequency(s,n),hifreq_correct))
ans =
[]
|
4 | Pass |
%%
s = 'AGCGAAGGAAGGATCACATTTCTCAGGACAAAGGCATTTCACTAATGGTT';
n = 3;
hifreq_correct = 'AGG';
assert(isequal(nGramFrequency(s,n),hifreq_correct))
ans =
[]
|
5 | Pass |
%%
s = 'In short, in matters vegetable, animal, and mineral, I am the very model of a modern Major-General.';
n = 2;
hifreq_correct = 'er';
assert(isequal(nGramFrequency(s,n),hifreq_correct))
ans =
[]
|
3239 Solvers
1727 Solvers
Back to basics 18 - justification
176 Solvers
Getting the row and column location from a matrix
236 Solvers
436 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!