Mercurial > repos > public > sbplib
view yesnoQuestion.m @ 1136:eee71789f13b feature/laplace_curvilinear_test
Add LaplaceCurvilinear schemes where the minimum check will be implemented. The Virta scheme will be used for comparison only.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Mon, 10 Jun 2019 10:43:12 +0200 |
parents | 0c166d195f58 |
children |
line wrap: on
line source
function b = yesnoQuestion(question, defaultAnswer) default_arg('defaultAnswer','nodefault'); yesAnswer = {'y','Y','yes','Yes','YES'}; noAnswer = {'n','N','no','No','NO'}; switch defaultAnswer case 'nodefault' optionString = '[y/n]'; case yesAnswer optionString = '[Y/n]'; yesAnswer{end+1} = ''; case noAnswer optionString = '[y/N]'; noAnswer{end+1} = ''; otherwise error('Unrecognized default answer: %s', defaultAnswer); end b = []; while isempty(b) answer = input([question ' ' optionString ': '],'s'); switch answer case yesAnswer b = true; case noAnswer b = false; end end end