Mercurial > repos > public > sbplib
view yesnoQuestion.m @ 1118:07d0caf915e4 feature/poroelastic
Introduce optFlag so that one can choose not to build the optimization-related cell of matrices called B. It is too computationally costly and should probably be done in a different way.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Sun, 05 May 2019 19:05:31 -0700 |
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