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))
|
Read a column of numbers and interpolate missing data
1235 Solvers
Basics: 'Find the eigenvalues of given matrix
323 Solvers
3071 Solvers
find the maximum element of the matrix
349 Solvers
2339 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!