string as input for function
5 ビュー (過去 30 日間)
古いコメントを表示
this function handles a string as input:
function rev=stringrev(a)
n=length(a);
for i=1:n
b(i)=a(n-i+1);
end
rev=b;
but this does not:
function palindrom=checkpalin(a)
rev=stringrev(a);
if strcmp(rev,a)
palindrom=sprintf('%s is a palindrom', rev)
else
palindrom=sprintf('%s is not a palindrom', rev)
end
what is the difference?
This is what happens when I run them in matlab:
>> b='astsa'
b =
astsa
>> checkpalin(b)
??? Undefined function or method 'checkpalin' for input arguments of type 'char'.
>> a='iceice'
a =
iceice
>> stringrev(a)
ans =
ecieci
>>
0 件のコメント
採用された回答
Grzegorz Knor
2011 年 11 月 7 日
Are you sure that you have not done a typo in the filename? I've tested your functions, and they work.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で MATLAB Report Generator についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!