Problem 60506. Pronounce digits
Given a number num, select the first d decimal places and pronounce the digits (in English). The function returns the pronunciation as a character array.
For example,
- if num is π and d is 2, the function should return 'three point one four'
- if num is 5 and d is 2, the function should return 'five point zero zero'
To simplify, we consider positive numbers less than 10.
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers8
Suggested Problems
-
Test if a Number is a Palindrome without using any String Operations
241 Solvers
-
Similar Triangles - find the height of the tree
448 Solvers
-
Convert a vector into a number
605 Solvers
-
Remove the two elements next to NaN value
663 Solvers
-
Create a vector whose elements depend on the previous element
725 Solvers
More from this Author53
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!