Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3;4 5 6;7 8 9];
thresh=5;
y_correct = [3 6 8 9];
filetext = fileread('MatrixIndices.m');
assert(isequal(MatrixIndices(x, thresh),y_correct))
assert(isempty(strfind(filetext, 'find')))
counter =
1
out =
3
counter =
2
out =
3 6
counter =
3
out =
3 6 8
counter =
4
out =
3 6 8 9
counter =
5
|
2 | Pass |
x = 1:2:100;
thresh=90;
y_correct = [46 47 48 49 50];
filetext = fileread('MatrixIndices.m');
assert(isequal(MatrixIndices(x, thresh),y_correct))
assert(isempty(strfind(filetext, 'find')))
counter =
1
out =
46
counter =
2
out =
46 47
counter =
3
out =
46 47 48
counter =
4
out =
46 47 48 49
counter =
5
out =
46 47 48 49 50
counter =
6
|
3 | Pass |
x = 1:2:100';
thresh=90;
y_correct = [46 47 48 49 50];
filetext = fileread('MatrixIndices.m');
assert(isequal(MatrixIndices(x, thresh),y_correct))
assert(isempty(strfind(filetext, 'find')))
counter =
1
out =
46
counter =
2
out =
46 47
counter =
3
out =
46 47 48
counter =
4
out =
46 47 48 49
counter =
5
out =
46 47 48 49 50
counter =
6
|
Increment a number, given its digits
562 Solvers
404 Solvers
Back to basics 13 - Input variables
233 Solvers
292 Solvers
Check that number is whole number
1070 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!