This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
X = fib_seq(145);
assert(isequal(X(end),144) && length(X)==12)
x =
1 1 2 3 5 8 13 21 34 55 89 144
|
2 | Pass |
X = fib_seq(4196);
assert(isequal(X(end),4181) && length(X)==19)
x =
Columns 1 through 8
1 1 2 3 5 8 13 21
Columns 9 through 16
34 55 89 144 233 377 610 987
Columns 17 through 19
1597 2584 4181
|
3 | Pass |
X = fib_seq(987419996);
assert(isequal(X(end),701408733) && length(X)==44)
x =
Columns 1 through 8
1 1 2 3 5 8 13 21
Columns 9 through 16
34 55 89 144 233 377 610 987
Columns 17 through 24
1597 2584 4181 6765 10946 17711 28657 46368
Columns 25 through 32
75025 121393 196418 317811 514229 832040 1346269 2178309
Columns 33 through 40
3524578 5702887 9227465 14930352 24157817 39088169 63245986 102334155
Columns 41 through 44
165580141 267914296 433494437 701408733
|
4 | Pass |
X = fib_seq(1134903171);
assert(isequal(X(end),1134903170) && length(X)==45)
x =
1.0e+09 *
Columns 1 through 9
0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000
Columns 10 through 18
0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000
Columns 19 through 27
0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0001 0.0001 0.0002
Columns 28 through 36
0.0003 0.0005 0.0008 0.0013 0.0022 0.0035 0.0057 0.0092 0.0149
Columns 37 through 45
0.0242 0.0391 0.0632 0.1023 0.1656 0.2679 0.4335 0.7014 1.1349
|
5 | Pass |
X = fib_seq(98691443031971);
assert(isequal(X(end),72723460248141) && length(X)==68)
x =
1.0e+13 *
Columns 1 through 9
0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000
Columns 10 through 18
0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000
Columns 19 through 27
0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000
Columns 28 through 36
0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000
Columns 37 through 45
0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0001 0.0001
Columns 46 through 54
0.0002 0.0003 0.0005 0.0008 0.0013 0.0020 0.0033 0.0053 0.0086
Columns 55 through 63
0.0140 0.0226 0.0365 0.0591 0.0957 0.1548 0.2505 0.4053 0.6557
Columns 64 through 68
1.0610 1.7168 2.7778 4.4946 7.2723
|
5703 Solvers
Omit columns averages from a matrix
527 Solvers
232 Solvers
Create an index-powered vector
352 Solvers
664 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!