Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
vec = [1 2 3 3 2 1];
v = 2;
y_correct = [false true false false true false];
assert(isequal(binaryEqualsVector(vec,v),y_correct))
ans =
0 1 0 0 1 0
|
2 | Pass |
%%
vec = [1 2 3 4 5 6];
v = 0;
y_correct = [false false false false false false];
assert(isequal(binaryEqualsVector(vec,v),y_correct))
ans =
0 0 0 0 0 0
|
3 | Pass |
%%
vec = [1 1 1 1 1];
v = 1;
y_correct = [true true true true true];
assert(isequal(binaryEqualsVector(vec,v),y_correct))
ans =
1 1 1 1 1
|
4 | Pass |
%%
vec = 'abcdef';
v = 'a';
y_correct = [true false false false false false];
assert(isequal(binaryEqualsVector(vec,v),y_correct))
ans =
1 0 0 0 0 0
|
Back to basics 13 - Input variables
233 Solvers
1425 Solvers
How many trades represent all the profit?
520 Solvers
Matrix with different incremental runs
249 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!