User input in an array?

12 ビュー (過去 30 日間)
Olivia Colombo
Olivia Colombo 2019 年 2 月 19 日
コメント済み: madhan ravi 2019 年 2 月 19 日
I'm asking for the user to input a sentence in my function and then it reverses the sentence, but there's an error on the line that asks for input. Not sure what I'm doing wrong? I've attached the function.

回答 (1 件)

madhan ravi
madhan ravi 2019 年 2 月 19 日
Use input() with 's' which refers to a string. https://www.mathworks.com/help/matlab/ref/input.html#btt5vtc-2
  1 件のコメント
madhan ravi
madhan ravi 2019 年 2 月 19 日
backward() % no input argument is required because all are defined inside the function
function backward() % function definition
a = input('Write a sentence to be reversed: ','s');
b = split(a); % Is this necessary?
c = reverse(a);
fprintf('Your sentenced reversed is: %s\n',c)
end

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by