this problem confused me which l thought to be hard
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 'a';
y = 'b';
y_correct = 'ab';
assert(isequal(your_fcn_name(x, y),y_correct))
|
2 | Pass |
%%
x = 'a';
y = 'a';
y_correct = 'ab';
assert(~isequal(your_fcn_name(x, y),y_correct))
|
How to find the position of an element in a vector without using the find function
2477 Solvers
927 Solvers
Generate N equally spaced intervals between -L and L
563 Solvers
260 Solvers
Check that number is whole number
1071 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!