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))
|
4 | Pass |
mat = ones(2);
v = [2 3];
comb_correct = [1 1; 1 1; 2 3];
assert(isequal(addVecToMat(mat, v), comb_correct))
|
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))
|
Project Euler: Problem 6, Natural numbers, squares and sums.
1018 Solvers
Compute a dot product of two vectors x and y
750 Solvers
725 Solvers
264 Solvers
302 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!