This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x=1;
y_correct = 1;
assert(isequal(theinputnumber(x),y_correct))
y =
1
|
2 | Pass |
%%
x=1;
k=3
y_correct = 2;
assert(isequal(theinputnumber(x,k),y_correct))
k =
3
y =
2
|
3 | Pass |
%%
x=1;
k=3;
z=4;
y_correct = 3;
assert(isequal(theinputnumber(x,k,z),y_correct))
y =
3
|
4 | Pass |
%%
x=1;
k=3;
z=4;
f=10
y_correct = 4;
assert(isequal(theinputnumber(x,k,z,f),y_correct))
f =
10
y =
4
|
239 Solvers
351 Solvers
Switch matrix to a column vector
189 Solvers
409 Solvers
130 Solvers