Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
v=[1 0 0 -1];
w=[1 -1];
assert(integ(v,w))
y =
1 1 1
ans =
logical
1
|
2 | Pass |
v=[2 9 6 -1 16 -5];
w=[2 3 -1 5];
assert(integ(v,w))
y =
1 3 -1
ans =
logical
1
|
3 | Pass |
v=[1 4 10 20 35 50 58 58 49 30];
w=1:6;
assert(integ(v,w))
y =
1 2 3 4 5
ans =
logical
1
|
4 | Pass |
v=1:10;
w=1:6;
assert(~integ(v,w))
y =
1 0 0 0 0
ans =
logical
0
|
5 | Pass |
v=3:12;
w=-3:2;
assert(~integ(v,w))
y =
-1.0000 -0.6667 -0.8889 -1.1852 -1.5802
ans =
logical
0
|
151 Solvers
Remove NaNs and numbers adjacent to NaNs
64 Solvers
Remove white space from the string
168 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
224 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!