convert numbers to english words

23 次查看(过去 30 天)
David Davis
David Davis 2016-11-25
编辑: DGM 2023-5-6
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
KSSV 2016-11-25
  3 个评论
DGM
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:
  1. explicitly requesting string output will return char output instead and a warning because the string class doesn't exist prior to R2016b
  2. 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 CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by