私は matlab にユーザー入力を受け入れさせたいのですが、文字の両方のケースを受け入れます。たとえば、私は持っています:
function nothing = checkGC(gcfile)
if exist(gcfile)
reply = input('file exists, would you like to overwrite? [Y/N]: ', 's');
if (reply == [Yy])
display('You have chosen to overwrite!')
else
$ Do nothing
end
end
if ステートメントは明らかに機能しませんが、基本的には小文字または大文字の Y を受け入れたいと考えています。これを行う最善の方法は何ですか?