Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1:10];
y = x;
z = true;
assert(isequal(are_equal(x,y),z));
ans =
1
|
2 | Pass |
%%
x = [1:10 NaN];
y = x;
z = true;
assert(isequal(are_equal(x,y),z));
ans =
1
|
3 | Pass |
%%
x = [2 4 6 NaN 8];
y = [2 4 NaN 6 8];
z = false;
assert(isequal(are_equal(x,y),z));
ans =
0
|
Find the alphabetic word product
2321 Solvers
How to find the position of an element in a vector without using the find function
2477 Solvers
594 Solvers
343 Solvers
1097 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!