フィルターのクリア

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

1 回表示 (過去 30 日間)
Mohannad Abboushi
Mohannad Abboushi 2016 年 3 月 30 日
回答済み: Walter Roberson 2016 年 3 月 30 日
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);

採用された回答

Walter Roberson
Walter Roberson 2016 年 3 月 30 日
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)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by