Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3 1];
y_correct = 1;
assert(isequal(checkvector(x),y_correct))
y =
logical
1
|
2 | Pass |
x = [1 2 7; 6 3 1];
y_correct = 0;
assert(isequal(checkvector(x),y_correct))
y =
logical
0
|
3 | Pass |
x = [1;2;0];
y_correct = 1;
assert(isequal(checkvector(x),y_correct))
y =
logical
1
|
given 3 sides, find area of this triangle
680 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1492 Solvers
725 Solvers
480 Solvers
Matlab Basics - y as a function of x
339 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!