MATLAB switch case 语句使用实例源程序



    month=3;
    switch month
        case {3,4,5}
            season='spring'
        case {6,7,8}
            season='summer'
        case {9,10,11}
            season='autumn'
        otherwise
            season='winter'

    end



字母        颜色          标点           线型
     y          黄色            ·              点线
     m          粉红            ○             圈线
     c          亮蓝           ×             ×线
     r          大红           +             +字线 
     g          绿色           -              实线
     b          蓝色           *               星形线
     w          白色           :             虚线
     k          黑色         -· (--)        点划线
matlab6.1线形:
[ + | o | * | . | x | square | diamond | v | ^ | > | < | pentagram | hexagram ]

    square           正方形
    diamond        菱形
    pentagram     五角星
    hexagram      六角星


你可能感兴趣的:(matlab)