Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
filetext = fileread('addVecToMat.m');
assert(isempty(strfind(filetext, 'regexp')),'regexp hacks are forbidden')
|
2 | Pass |
mat = ones(2);
v = 1:3;
comb_correct = [1 1 inf; 1 1 inf; 1 2 3];
assert(isequal(addVecToMat(mat, v), comb_correct))
|
3 | Pass |
mat = ones(3, 4);
v = [2 3];
comb_correct = [ones(3,4); 2 3 -inf -inf];
assert(isequal(addVecToMat(mat, v), comb_correct))
comb =
1 1 1 1
1 1 1 1
1 1 1 1
2 3 -Inf -Inf
|
4 | Pass |
mat = ones(2);
v = [2 3];
comb_correct = [1 1; 1 1; 2 3];
assert(isequal(addVecToMat(mat, v), comb_correct))
comb =
1 1
1 1
2 3
|
5 | Pass |
mat = ones(3);
v = 1:6;
comb_correct = [repmat([ones(1,3) inf(1,3)], 3, 1); 1:6];
assert(isequal(addVecToMat(mat, v), comb_correct))
|
19335 Solvers
How to find the position of an element in a vector without using the find function
2477 Solvers
Back to basics 6 - Column Vector
908 Solvers
Is this triangle right-angled?
2396 Solvers
Check that number is whole number
1070 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!