Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
X = [-1 1 0];
Y=[-1 1 0];
y_correct = 1;
assert(isequal(your_fcn_name(X,Y),y_correct))
|
2 | Pass |
X = [0 3 6];
Y=[5 7 9];
y_correct = 1;
assert(isequal(your_fcn_name(X,Y),y_correct))
|
3 | Pass |
X = [0 7 14];
Y=[-7 -5 -3];
y_correct = 1;
assert(isequal(your_fcn_name(X,Y),y_correct))
|
4 | Pass |
X = [10 12 -10];
Y=[-7 -3 47];
y_correct = 0;
assert(isequal(your_fcn_name(X,Y),y_correct))
|
5 | Pass |
X = [0 0.8 1];
Y=[0.2 1 1];
y_correct = 0;
assert(isequal(your_fcn_name(X,Y),y_correct))
|
Find state names that start with the letter N
598 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
Find third Side of a right triangle given hypotenuse and a side. No * - or other functions allowed
141 Solvers
404 Solvers
254 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!