This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
A = [1 2 4];
B = [-1 1 3];
fun = @plus;
y_correct = [0 3 7];
assert(isequal(ABfun(A,B,fun),y_correct))
|
2 | Pass |
%%
A = [1 2 4];
B = [-1 1 3];
fun = @minus;
y_correct = [2 1 1];
assert(isequal(ABfun(A,B,fun),y_correct))
|
3 | Pass |
%%
A = [2 3 4];
B = 2;
fun = @power;
y_correct = [4 9 16];
assert(isequal(ABfun(A,B,fun),y_correct))
|
4 | Pass |
%%
A = [1 0 1];
B = [0 1 0];
fun = @times;
y_correct = [0 0 0];
assert(isequal(ABfun(A,B,fun),y_correct))
|
1735 Solvers
Getting the indices from a vector
1445 Solvers
474 Solvers
The sum of the numbers in the vector
341 Solvers
424 Solvers