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')))
|
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')))
|
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')))
|
Sort a list of complex numbers based on far they are from the origin.
4327 Solvers
235 Solvers
1763 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
297 Solvers
2099 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!