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
|
How to find the position of an element in a vector without using the find function
2323 Solvers
186 Solvers
164 Solvers
156 Solvers
Back to Basics - Find no. of elements in a matrix?
163 Solvers