Problem 897. Finite Continued Fraction
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];
Solution Stats
Problem Comments
- 
		1 Comment
		Tim
    	on 10 Aug 2012
	
	
  	The result for pi is not really correct after the 13th term--we do not have enough decimal places to go that far. If we use the same method, though, we will generate the same noise.
Solution Comments
Show commentsProblem Recent Solvers36
Suggested Problems
- 
         
         228 Solvers 
- 
         
         489 Solvers 
- 
         Set some matrix elements to zero 597 Solvers 
- 
         Find out missing number from a vector of 9 elements 309 Solvers 
- 
         Celsius to Fahrenheit converter 647 Solvers 
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!