Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 100;
assert(isequal(logic(x),y_correct))
|
2 | Pass |
x = 2;
assert(isequal(logic(x),102))
y =
102
|
3 | Pass |
x = 4;
assert(isequal(logic(x),103))
y =
102
y =
99
y =
103
|
4 | Pass |
x = 7;
assert(isequal(logic(x),97))
y =
102
y =
99
y =
103
y =
98
y =
104
y =
97
|
How to find the position of an element in a vector without using the find function
2477 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
297 Solvers
257 Solvers
363 Solvers
903 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!