Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
p0 = [0 0 0];
p1 = [1 1 1];
p2 = [2 2 2];
p3 = [3 3 3];
t0 = 0;
t1 = 1;
d = 1;
ok = true;
assert(isequal(safetrip(d, t0, t1, p0, p1, p2, p3), ok))
ans =
logical
1
|
2 | Pass |
p0 = [3 3 3];
p1 = [2 2 2];
p2 = [2 2 2];
p3 = [3 3 3];
t0 = 0;
t1 = 1;
d = 1;
ok = false;
assert(isequal(safetrip(d, t0, t1, p0, p1, p2, p3), ok))
ans =
logical
0
|
3 | Pass |
p0 = [1 2 3];
p1 = [4 5 6];
p2 = [3 2 1];
p3 = [6 5 4];
t0 = 10;
t1 = 20;
d = 2;
ok = true;
assert(isequal(safetrip(d, t0, t1, p0, p1, p2, p3), ok))
ans =
logical
1
|
232 Solvers
Put two time series onto the same time basis
174 Solvers
724 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
Number of digits in an integer
336 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!