我想让 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。最好的方法是什么?