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)
|
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)
|
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)
|
Given two strings, find the maximum overlap
461 Solvers
How to find the position of an element in a vector without using the find function
2477 Solvers
Celsius to Fahrenheit converter
389 Solvers
139 Solvers
Number of Even Elements in Fibonacci Sequence
665 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!