Borrar filtros
Borrar filtros

How do i change the input to make it any word I type in?

1 visualización (últimos 30 días)
In this program I am supposed to take a character array s as input and return a new character array with each letter shifted forward once in the alphabet (Assuming that the input s will never contain the letter 'z'.)
So far here's my code:
function S = shiftletters('apple')
S=char('a':'z'+1);

Respuesta aceptada

Walter Roberson
Walter Roberson el 30 de Mzo. de 2016
In a function line, you need to name a variable that will receive the passed value, such as
function S = shiftletters(TheInputWord)
Then inside the function your code should act upon the contents of that variable name (such as TheInputWord). For example to reverse the input you could use
fliplr(TheInputWord)

Más respuestas (0)

Categorías

Más información sobre Multidimensional Arrays 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