Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = [1 2 3 4 5];
b = [2 3 4 5 6];
y_correct = [1 6];
assert(isequal(vector_diff(a,b),y_correct))
|
2 | Pass |
%%
a = 10:-2:0;
b = 1:2:11;
y_correct = 0:11;
assert(isequal(vector_diff(a,b),y_correct))
|
3 | Pass |
%%
a=magic(5);
b=magic(6);
y_correct = 26:36;
assert(isequal(vector_diff(a,b),y_correct))
|
4 | Pass |
%%
a=(10:100)';
b=11:100;
y_correct = 10;
assert(isequal(vector_diff(a,b),y_correct))
|
5 | Pass |
%%
a=magic(3)-1.5;
b=[];
y_correct = -0.5:7.5;
assert(isequal(vector_diff(a,b),y_correct))
|
6 | Pass |
%%
a=zeros(5);
b=ones(3);
y_correct=[0 1];
assert(isequal(vector_diff(a,b),y_correct))
|
7 | Pass |
%%
forbidden = '(regexp)';
assert(isempty(regexp(evalc('type vector_diff'),forbidden)));
|
It dseon't mettar waht oedrr the lrettes in a wrod are.
652 Solvers
Number of 1s in the Binary Representation of a Number
356 Solvers
Back to basics 13 - Input variables
233 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
511 Solvers
07 - Common functions and indexing 6
348 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!