convert numbers to english words
22 次查看(过去 30 天)
显示 更早的评论
I need to make a function that receives an integer input form the user and then gives a string output of the English conversion of the number.
Ex: num2word(14234) = "fourteen thousand two hundred and thirty four"
I've tried achieving this with loops and case structures as well as with arrays and there are a few issues that I keep running into.
1) However I do it; the way I approach it is above 150 lines
2) I always run into issues with cells. I try all the little nick nacks I know like cell fun but I still can't seem to get it to work.
what is the best way to approach this situation?
I've only used matlab for a short period of time so I don't know much more than the basics.
回答(1 个)
KSSV
2016-11-25
Have you seen this?
3 个评论
DGM
2023-5-6
编辑:DGM
2023-5-6
The examples given for num2words() work when tested in R2009b -- with exceptions that I doubt are an obstacle:
- explicitly requesting string output will return char output instead and a warning because the string class doesn't exist prior to R2016b
- operations on uint64 and int64 inputs don't work due to the absence of arithmetic support. That shouldnot be a problem for you, since that was added in R2010b.
So unless you're trying to use functionality that doesn't exist in your version, then you'll have to describe the problem. Without information, nobody can know how exactly it doesn't work or why it doesn't work.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Argument Definitions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!