Problem 897. Finite Continued Fraction

Created by AlfredLeMark

Given an input real number x and a natural number n, output the row vector with the n first terms of the continued fraction. For more details, you could find help here: http://en.wikipedia.org/wiki/Continued_fraction

Example:

Inputs: x=pi; n = 10;

Output: y = [3 7 15 1 292 1 1 1 2 1];

Tags

Problem Group

15 solvers submitted 62 solutions (4.13 solutions/solver).

Problem Comments