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.45;
assert(isequal(half(x),y_correct));
ans =
-1.4500
|
2 | Pass |
%%
x = 2;
y_correct = -1.4;
assert(isequal(half(x),y_correct));
ans =
-1.4000
|
3 | Pass |
%%
x = 3;
y_correct = -1.35;
assert(isequal(half(x),y_correct));
ans =
-1.3500
|
Find the sum of all the numbers of the input vector
25676 Solvers
340 Solvers
Project Euler: Problem 10, Sum of Primes
555 Solvers
253 Solvers
Matlab Basics II - Extract last 3 elements of a vector
110 Solvers