Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
assert(isequal(guess_the_coefficients(@(x)x^2+2*x+15),[1 2 15]))
s =
1
s =
1 2
s =
1 2 15
|
2 | Pass |
assert(isequal(guess_the_coefficients(@(x)polyval(53,x)),53))
s =
53
|
3 | Pass |
assert(isequal(guess_the_coefficients(@(x)polyval([54 87],x)),[54 87]))
s =
54
s =
54 87
|
4 | Pass |
assert(isequal(guess_the_coefficients(@(x)polyval([49 40 68],x)),[49 40 68]))
s =
49
s =
49 40
s =
49 40 68
|
5 | Pass |
assert(isequal(guess_the_coefficients(@(x)polyval([75 53 35 15],x)),[75 53 35 15]))
s =
75
s =
75 53
s =
75 53 35
s =
75 53 35 15
|
6 | Pass |
assert(isequal(guess_the_coefficients(@(x)polyval([59 27 5 76 25],x)),[59 27 5 76 25]))
s =
59
s =
59 27
s =
59 27 5
s =
59 27 5 76
s =
59 27 5 76 25
|
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
261 Solvers
Project Euler: Problem 7, Nth prime
521 Solvers
Return unique values without sorting
588 Solvers
133 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!