integers to English phrase

2 visualizaciones (últimos 30 días)
Britnie Casillas
Britnie Casillas el 15 de Nov. de 2019
Comentada: Walter Roberson el 16 de Nov. de 2019
I am trying to create a function that converts double digits between 21 and 39 into its english phrase.
I think I have the beginning of the code that sets the integer parameter but I do not know what to do next. This is what I have so far:
function S = Convert_to_words(number)
ones = {'', 'One', 'Two', 'Three', 'Four', 'Five', 'Six', 'Seven', 'Eight', 'Nine'};
tens = {'', '', 'ERROR', 'Twenty', 'Thirty'};
end
  10 comentarios
Britnie Casillas
Britnie Casillas el 16 de Nov. de 2019
wouldnt the tens_digits and one_digits be the same variables as the ones and tens? What do you mean derive them from number?
Stephen23
Stephen23 el 16 de Nov. de 2019
"wouldnt the tens_digits and one_digits be the same variables as the ones and tens? "
No.
tens ans ones are cell arrays of character vectors.
tens_digits and one_digits should be numeric values of the digits in the given number (which by adding one to (because MATLAB indexing starts from one) can be used as indices into ones and tens).
"What do you mean derive them from number? "
You need to get the digits from number, as numeric values.

Iniciar sesión para comentar.

Respuesta aceptada

Matt J
Matt J el 16 de Nov. de 2019
As a further hint, consider the following version, which is almost what you want
function S = convert_to_words(number)
ones= {'', 'One', 'Two', 'Three', 'Four', 'Five', 'Six', 'Seven', 'Eight', 'Nine'};
tens = {'','ERROR', 'Twenty-', 'Thirty-'};
tens_digit=3;
ones_digit=4;
S=[tens{tens_digit + 1}, ones{ones_digit + 1}];
end
It works very reliably on the number 34,
>> S=convert_to_words(34)
S =
'Thirty-Four'
Your job is to get it to work for everything else.
  2 comentarios
Britnie Casillas
Britnie Casillas el 16 de Nov. de 2019
Thank you very much
Walter Roberson
Walter Roberson el 16 de Nov. de 2019
However 30 exactly is going to output something that ends in a hyphen when it shouldn't.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by