view yesnoQuestion.m @ 1329:7df63b17e078 feature/D2_boundary_opt

Add support for boundary optimized grids in DefCurvilinear, and add boundaryOptimizedCurvilinear for constructing a curvilinear grid with boundary optimized grid point placement.
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Mon, 14 Feb 2022 14:55:29 +0100
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