Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 10; c = 3;
M = createMatrix(n,c);
assert( all(sum(M,1)==c) && all(sum(M,2)==c) && all(diag(M)==0) && ...
islogical(M) && ismatrix(M) && all(size(M)==n) )
|
2 | Pass |
n = 2; c = 1;
M = createMatrix(n,c);
assert( all(sum(M,1)==c) && all(sum(M,2)==c) && all(diag(M)==0) && ...
islogical(M) && ismatrix(M) && all(size(M)==n) )
|
3 | Pass |
n = 10; c = 9;
M = createMatrix(n,c);
assert( all(sum(M,1)==c) && all(sum(M,2)==c) && all(diag(M)==0) && ...
islogical(M) && ismatrix(M) && all(size(M)==n) )
|
4 | Pass |
n = 100; c = 50;
M = createMatrix(n,c);
assert( all(sum(M,1)==c) && all(sum(M,2)==c) && all(diag(M)==0) && ...
islogical(M) && ismatrix(M) && all(size(M)==n) )
|
5 | Pass |
n = randi([2 20]); c = randi([1 n-1]);
M = createMatrix(n,c);
assert( all(sum(M,1)==c) && all(sum(M,2)==c) && all(diag(M)==0) && ...
islogical(M) && ismatrix(M) && all(size(M)==n) )
|
6 | Pass |
n = randi([20 100]); c = randi([10 n-1]);
M = createMatrix(n,c);
assert( all(sum(M,1)==c) && all(sum(M,2)==c) && all(diag(M)==0) && ...
islogical(M) && ismatrix(M) && all(size(M)==n) )
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
Create a vector whose elements depend on the previous element
391 Solvers
282 Solvers
Implement a bubble sort technique and output the number of swaps required
153 Solvers
Find the Oldest Person in a Room
5120 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!