Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
t_correct = 1000;
tic;
waitForMe(t_correct);
t = toc
assert( abs(t_correct - t*1000) <= 0.5 )
t =
0.9996
|
2 | Pass |
t_correct = 1000;
for r = 1 : 9
tic;
waitForMe(t_correct);
t = toc
assert( abs(t_correct - t*1000) <= 0.5 )
end;
t =
0.9996
t =
0.9996
t =
0.9996
t =
0.9998
t =
0.9999
t =
0.9995
t =
0.9995
t =
0.9995
t =
0.9995
|
Determine whether a vector is monotonically increasing
11922 Solvers
235 Solvers
Solve the set of simultaneous linear equations
273 Solvers
Compute a dot product of two vectors x and y
750 Solvers
205 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!