Richard sir, am experiencing problem solving problem:882 created by you.. am getting an error while downloading the file..rubik_rot(mov,r) function..Plz help me
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
D = [0 0 0 0 0];
T = [0 0 0 0 0];
tol = 0;
TF_correct = true;
assert(isequal(testtolerance(D,T,tol),TF_correct))
|
2 | Pass |
%%
D = [0 0 0 0 -.1];
T = [0 0 0 0 0];
tol = 0.001;
TF_correct = false;
assert(isequal(testtolerance(D,T,tol),TF_correct))
|
3 | Pass |
%%
D = [.1 0 0 0 0 0 -.1];
T = [0 .2 .001 0 -.1 0 0];
tol = .15;
TF_correct = false;
assert(isequal(testtolerance(D,T,tol),TF_correct))
|
4 | Pass |
%%
D = [.1 0 0 0 0 0 -.1];
T = [0 .2 .001 0 -.1 0 0];
tol = .25;
TF_correct = true;
assert(isequal(testtolerance(D,T,tol),TF_correct))
|
5 | Pass |
%%
D = [-.001 .2 .001 0 -.1 0 0 .1];
T = [.023 .2 .001 0 -.1 0 0 -.3];
tol = .25;
TF_correct = false;
assert(isequal(testtolerance(D,T,tol),TF_correct))
|
Find the longest sequence of 1's in a binary sequence.
3370 Solvers
Determine Whether an array is empty
646 Solvers
314 Solvers
260 Solvers
What is Sum Of all elements of Matrix
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!