Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = zeros(0,1);
assert(isequal(middleAsColumn(x),y_correct))
y =
Empty matrix: 0-by-1
|
2 | Pass |
%%
x = rand(1,4);
y_correct = x(2:3)';
assert(isequal(middleAsColumn(x),y_correct))
y =
0.4854
0.8003
|
3 | Pass |
%%
x = rand(4,1);
y_correct = x(2:3);
assert(isequal(middleAsColumn(x),y_correct))
y =
0.9157
0.7922
|
4 | Pass |
%%
x = rand(2,2);
y_correct = x(2:3)';
assert(isequal(middleAsColumn(x),y_correct))
y =
0.0357
0.8491
|
5 | Pass |
%%
x = {1 2 3 4};
y_correct = x(2:3)';
assert(isequal(middleAsColumn(x),y_correct))
y =
[2]
[3]
|
6 | Pass |
%%
x = struct('a',{1 2 3 4},'b',{3 4 5 6});
y_correct = x(2:3)';
assert(isequal(middleAsColumn(x),y_correct))
y =
2x1 struct array with fields:
a
b
|
Project Euler: Problem 7, Nth prime
521 Solvers
Who knows the last digit of pi?
557 Solvers
260 Solvers
249 Solvers
485 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!