Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [ 1 2 3 ]; y = [ 3 2 1 ];
z_correct = [3 4 3];
assert(isequal(vector_dot(x,y),z_correct))
z =
3 4 3
|
2 | Pass |
x = [ 1 2 3 4 ]; y = [2 3 2 1 ];
z_correct = [2 6 6 4];
assert(isequal(vector_dot(x,y),z_correct))
z =
2 6 6 4
|
Project Euler: Problem 1, Multiples of 3 and 5
1492 Solvers
Convert from Base 10 to base 5
203 Solvers
413 Solvers
327 Solvers
429 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!