Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
user_solution = fileread('chebyshev2ndKindPoly.m');
assert(isempty(strfind(user_solution,'regexp')));
assert(isempty(strfind(user_solution,'2str')));
assert(isempty(strfind(user_solution,'str2')));
assert(isempty(strfind(user_solution,'interp')));
assert(isempty(strfind(user_solution,'printf')));
assert(isempty(strfind(user_solution,'assert')));
|
2 | Fail |
n = 0;
P_correct = [1];
assert(isequal(chebyshev2ndKindPoly(n),P_correct));
|
3 | Fail |
n = 1;
P_correct = [2 0];
assert(isequal(chebyshev2ndKindPoly(n),P_correct));
|
4 | Fail |
n = 2;
P_correct = [4 0 -1];
assert(isequal(chebyshev2ndKindPoly(n),P_correct));
|
5 | Fail |
n = 3;
P_correct = [8 0 -4 0];
assert(isequal(chebyshev2ndKindPoly(n),P_correct));
|
6 | Fail |
n = 4;
P_correct = [16 0 -12 0 1];
assert(isequal(chebyshev2ndKindPoly(n),P_correct));
|
7 | Fail |
n = 5;
P_correct = [32 0 -32 0 6 0];
assert(isequal(chebyshev2ndKindPoly(n),P_correct));
|
8 | Fail |
n = 6;
P_correct = [64 0 -80 0 24 0 -1];
assert(isequal(chebyshev2ndKindPoly(n),P_correct));
|
9 | Fail |
n = 7;
P_correct = [128 0 -192 0 80 0 -8 0];
assert(isequal(chebyshev2ndKindPoly(n),P_correct));
|
10 | Fail |
n = 8;
P_correct = [256 0 -448 0 240 0 -40 0 1];
assert(isequal(chebyshev2ndKindPoly(n),P_correct));
|
11 | Fail |
n = 9;
P_correct = [512 0 -1024 0 672 0 -160 0 10 0];
assert(isequal(chebyshev2ndKindPoly(n),P_correct));
|
12 | Fail |
n = 10;
P_correct = [1024 0 -2304 0 1792 0 -560 0 60 0 -1];
assert(isequal(chebyshev2ndKindPoly(n),P_correct));
|
13 | Fail |
n = 11;
P_correct = [2048 0 -5120 0 4608 0 -1792 0 280 0 -12 0];
assert(isequal(chebyshev2ndKindPoly(n),P_correct));
|
14 | Fail |
n = 12;
P_correct = [4096 0 -11264 0 11520 0 -5376 0 1120 0 -84 0 1];
assert(isequal(chebyshev2ndKindPoly(n),P_correct));
|
15 | Fail |
n = 13;
P_correct = [8192 0 -24576 0 28160 0 -15360 0 4032 0 -448 0 14 0];
assert(isequal(chebyshev2ndKindPoly(n),P_correct));
|
16 | Fail |
n = 14;
P_correct = [16384 0 -53248 0 67584 0 -42240 0 13440 0 -2016 0 112 0 -1];
assert(isequal(chebyshev2ndKindPoly(n),P_correct));
|
17 | Fail |
n = 15;
P_correct = [32768 0 -114688 0 159744 0 -112640 0 42240 0 -8064 0 672 0 -16 0];
assert(isequal(chebyshev2ndKindPoly(n),P_correct));
|
284 Solvers
Back to basics 17 - white space
245 Solvers
Given a 4x4 matrix, swap the two middle columns
516 Solvers
227 Solvers
Make a vector of prime numbers
194 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!