Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = ' MATLAB';
y_correct = ' MATLAB ';
assert(isequal(justify(x),y_correct))
|
2 | Pass |
%%
x = 'MATLAB ';
y_correct = ' MATLAB ';
assert(isequal(justify(x),y_correct))
|
3 | Pass |
%%
x = ' MATLAB ';
y_correct = ' MATLAB ';
assert(isequal(justify(x),y_correct))
|
4 | Pass |
%%
x = ' MATLAB ';
y_correct = ' MATLAB ';
assert(isequal(justify(x),y_correct))
|
Select every other element of a vector
16215 Solvers
How to find the position of an element in a vector without using the find function
2320 Solvers
Find the largest value in the 3D matrix
897 Solvers
How many monitors are connected ?
108 Solvers
Find out missing number from a vector of 9 elements
207 Solvers