Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
nocheat = isempty(regexp(evalc('type matched_op'),'([^f]eval|regexprep|inline|str2func)'));
x = [1 2;3 4];
y = [1 2];
z_correct = [1 4;3 8];
assert(isequal(matched_op(x,y,'times'),z_correct) && nocheat)
ans =
1 4
3 8
|
2 | Pass |
nocheat = isempty(regexp(evalc('type matched_op'),'([^f]eval|regexprep|inline|str2func)'));
x = [10i];
y = [20];
z_correct = [-2i];
assert(isequal(matched_op(x,y,'ldivide'),z_correct) && nocheat)
ans =
0.0000 - 2.0000i
|
3 | Pass |
nocheat = isempty(regexp(evalc('type matched_op'),'([^f]eval|regexprep|inline|str2func)'));
x = reshape(1:4,[1 1 1 4]);
y = (1:4).';
z_correct = reshape([2 3 4 5 3 4 5 6 4 5 6 7 5 6 7 8],[4 1 1 4]);
assert(isequal(matched_op(x,y,'plus'),z_correct) && nocheat)
ans(:,:,1,1) =
2
3
4
5
ans(:,:,1,2) =
3
4
5
6
ans(:,:,1,3) =
4
5
6
7
ans(:,:,1,4) =
5
6
7
8
|
Extract leading non-zero digit
1205 Solvers
The Hitchhiker's Guide to MATLAB
2874 Solvers
Determine Whether an array is empty
646 Solvers
184 Solvers
391 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!