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))
1 1 Inf
1 1 Inf
1 2 3
|
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))
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))
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))
1 1 1 Inf Inf Inf
1 1 1 Inf Inf Inf
1 1 1 Inf Inf Inf
1 2 3 4 5 6
|
Project Euler: Problem 7, Nth prime
521 Solvers
Reverse the elements of an array
687 Solvers
Matlab Basics II - Extract last 3 elements of a vector
164 Solvers
Test Problem; Create a 5x5 array containing all ones
270 Solvers
Remove the air bubbles from a vector
173 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!