Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = 3;
alpha = 1 : 1 : 10;
beta = 2 : 2 : 20;
b = 6;
out = interpolator(a, alpha, beta);
assert(isequal(out(:), b))
|
2 | Pass |
%%
a = 3.5;
alpha = 1 : 1 : 10;
beta = 2 : 2 : 20;
b = 7;
out = interpolator(a, alpha, beta);
assert(isequal(out(:), b))
|
3 | Pass |
%%
a = 3;
alpha = [0 1 5 6 7 10];
beta = [2 3 5 7 9 100];
b = 4;
out = interpolator(a, alpha, beta);
assert(isequal(out(:), b))
|
Project Euler: Problem 6, Natural numbers, squares and sums.
782 Solvers
159 Solvers
Matrix which contains the values of an other matrix A at the given locations.
196 Solvers
Detect a number and replace with two NaN's
157 Solvers
196 Solvers