This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1.000 1.04 0.22 10.1;
2.05 2.33 4.1 1000.31;
5.00010 6.429 7.492 8.0];
y_correct = 4;
assert(isequal(find_max_sigdec(x),y_correct))
d =
0 0 0 0
0 0 0 0
0 0 0 0
|
2 | Pass |
N = randi(6,1);
x1 = rand(1,100);
for k = 1:100
x(1,k) = round(x1(1,k)*10^N)/10^N;
end
assert(isequal(find_max_sigdec(x), N))
d =
Columns 1 through 29
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Columns 30 through 58
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Columns 59 through 87
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Columns 88 through 100
0 0 0 0 0 0 0 0 0 0 0 0 0
|
3 | Pass |
N = randi(6,1);
a = rand(5,20);
for k = 1:20
for m = 1:5
x(m,k) = round(a(m,k)*10^N)/10^N;
end
end
assert(isequal(find_max_sigdec(x), N))
d =
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
4 | Pass |
x = 1;
assert(isequal(find_max_sigdec(x), 0))
d =
0
|
2486 Solvers
Getting the indices from a vector
3210 Solvers
3065 Solvers
387 Solvers
2055 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!