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))
|
1836 Solvers
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
1051 Solvers
87 Solvers
414 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!