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))
vb =
6
|
2 | Pass |
a = 3.5;
alpha = 1 : 1 : 10;
beta = 2 : 2 : 20;
b = 7;
out = interpolator(a, alpha, beta);
assert(isequal(out(:), b))
vb =
7
|
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))
vb =
4
|
Get the length of a given vector
3559 Solvers
452 Solvers
Matlab Basics - Convert a row vector to a column vector
419 Solvers
555 Solvers
Find the sides of an isosceles triangle when given its area and height from its base to apex
449 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!