Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x =1:3;
y =2:4;
y_correct = [2 3 4 4 6 8 6 9 12];
assert(isequal(mykron(x,y),y_correct))
tline =
' z = kron(x,y);'
|
2 | Fail |
x = randi(10,3,3);
y = 2:4;
z_correct = kron(x,y);
assert(isequal(mykron(x,y),z_correct))
tline =
' z = kron(x,y);'
|
17213 Solvers
63 Solvers
Back to basics 2 - Function Path
163 Solvers
Replace multiples of 5 with NaN
358 Solvers
How long do each of the stages of the rocket take to burn?
77 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!