Problem 1072. Television Screen Dimensions
Given a width to height ratio of a TV screen given as w and h as well as the diagonal length of the television l, return the actual width and height of the screen to one decimal point of precision.
Example:
    w = 16;
    h = 9;
    l = 42;
    [W,H] = teledims(w,h,l);outputs
    W = 36.6
    H = 20.6
			Solution Stats
Problem Comments
- 
		4 Comments
 
		    Show
		    1 older comment
		  
		  
		James
    	on 4 Dec 2012
	
	
  	I think you have your W and H mixed up in your example and test suite.
		@bmtran (Bryant Tran)
    	on 4 Dec 2012
	
	
  	Thanks James, I've fixed it now.
		Rafael Cruz
    	on 4 Dec 2012
	
	
  	I also used round, but I not seen to be the best solution.
		vandeleeuw
    	on 22 Oct 2018
	
	
  	36.6/20.6==16/9 is false.
The values from the test suite are also inaccurate.
Solution Comments
Show commentsProblem Recent Solvers551
Suggested Problems
- 
         
Unique values without using UNIQUE function
402 Solvers
 - 
         
         
9695 Solvers
 - 
         
Output any real number that is neither positive nor negative
402 Solvers
 - 
         
         
683 Solvers
 - 
         
         
5728 Solvers
 
More from this Author56
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!