Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
m = 197;
n = 535;
y_correct = ones(m, n);
assert(isequal(repl_mat(x, m, n),y_correct))
|
2 | Pass |
x = 0;
m = 458;
n = 535;
y_correct = zeros(m, n);
assert(isequal(repl_mat(x, m, n),y_correct))
|
3 | Pass |
x = 2;
m = 1;
n = 1;
y_correct = 2;
assert(isequal(repl_mat(x, m, n),y_correct))
|
4 | Pass |
x = -1;
m = 1;
n = 2;
y_correct = [-1 -1];
assert(isequal(repl_mat(x, m, n),y_correct))
|
5 | Pass |
x = 1.5;
m = 2;
n = 2;
y_correct = [1.5 1.5; 1.5 1.5];
assert(isequal(repl_mat(x, m, n),y_correct))
|
6 | Pass |
x = '1';
m = 1;
n = 3;
y_correct = ['1' '1' '1'];
assert(isequal(repl_mat(x, m, n),y_correct))
|
Number of 1s in the Binary Representation of a Number
356 Solvers
Back to basics 19 - character types
225 Solvers
Matrix which contains the values of an other matrix A at the given locations.
214 Solvers
364 Solvers
Calculate square and cube of number
248 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!