Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = rand(10000, 1);
z = rand(10000, 1);
x = vertcat(x, z);
tic
y_correct = unique(x);
t_unique = toc
tic
y_myunique = my_unique(x);
t_myunique = toc
assert(isequal(sort(my_unique(x)),y_correct) && t_unique > t_myunique)
t_unique =
0.0073
t_myunique =
0.0028
|
2 | Pass |
x = rand(50000, 1);
z = rand(50000, 1);
x = vertcat(x, z);
tic
y_correct = unique(x);
t_unique = toc
tic
y_my_unique = my_unique(x);
t_my_unique = toc
assert(isequal(sort(my_unique(x)),y_correct) && t_unique > t_my_unique)
t_unique =
0.0098
t_my_unique =
0.0083
|
3 | Pass |
x = [1; 2; 3; 4; 2; 3; 4; 5;];
tic
y_correct = unique(x);
t_unique = toc
tic
y_my_unique = my_unique(x);
t_my_unique = toc
assert(isequal(sort(my_unique(x)),y_correct) && t_unique > t_my_unique)
t_unique =
0.0015
t_my_unique =
0.0012
|
2486 Solvers
213 Solvers
Back to basics 3 - Temp Directory
328 Solvers
Find Index of maximum Value and maximum Value of a vector
145 Solvers
Create a random logical vector of N elements of which M are true.
85 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!