multiple inputs for a function

2 ビュー (過去 30 日間)
Giuseppe
Giuseppe 2014 年 4 月 2 日
回答済み: Mischa Kim 2014 年 4 月 2 日
this is my function
function ispal=palindrome(forward_string)
reverse_string = forward_string(end:-1:1);
ispal = all(forward_string == reverse_string);
return
end
how could i change this if i give multiple strings as forward_string i get multiple outputs wether or not it is a palindrome. e.g. input of {'dog', 'abba'}

採用された回答

Mischa Kim
Mischa Kim 2014 年 4 月 2 日
Giuseppe, you could use
function ispal = palindrome(forward_string)
for ii=1:numel(forward_string)
ispal{ii} = strcmp(forward_string{ii},fliplr(forward_string{ii}));
end
Alternatively, you could return ispal as a numeric array: ispal(ii).

その他の回答 (0 件)

製品

Community Treasure Hunt

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

Start Hunting!

Translated by