Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x1 = 'a';
x2= 'b';
y_correct = 'ab';
assert(isequal(concatstrings(x1,x2),y_correct))
|
2 | Pass |
x1 = 'a';
x2= 'b';
x3= 'c';
y_correct = 'abc';
assert(isequal(concatstrings(x1,x2,x3),y_correct))
|
3 | Pass |
x1 = 'my';
x2= ' ';
x3= 'holiday';
x4= ' ';
x5= 'is';
x6= ' almost over!';
y_correct = 'my holiday is almost over!';
assert(isequal(concatstrings(x1,x2,x3,x4,x5,x6),y_correct))
|
4 | Pass |
assert(isempty(concatstrings()))
|
middleAsColumn: Return all but first and last element as a column vector
387 Solvers
185 Solvers
345 Solvers
465 Solvers
Matlab Basics II - Create a vector with a repeated entry
182 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!