Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 'I have been using MATLAB for 50 years!';
y_correct = 'Me!';
assert(isequal(smartest(x),y_correct))
ans =
Me!
|
2 | Pass |
x = 'I developed MATLAB!';
y_correct = 'Me!';
assert(isequal(smartest(x),y_correct))
ans =
Me!
|
3 | Pass |
x = '';
y_correct = 'Me!';
assert(isequal(smartest(x),y_correct))
ans =
Me!
|
4 | Pass |
x = 1;
y_correct = 'Me!';
assert(isequal(smartest(x),y_correct))
ans =
Me!
|
Generate a vector like 1,2,2,3,3,3,4,4,4,4
3623 Solvers
250 Solvers
227 Solvers
315 Solvers
Matlab Basics II - Count rows in a matrix
255 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!