MATLAB中switch后面加上lower是什么意思
发布网友
发布时间:2022-04-30 11:53
我来回答
共4个回答
热心网友
时间:2022-06-22 01:02
将字母变为小写
例子
lower('This Is an Example. There Are 9 Letters Will Convert to Lowercase.')追问case加大括号是什么意思
热心网友
时间:2022-06-22 01:02
将字母变为小写
例子
lower
('This Is an Example. There Are 9 Letters Will Convert to Lowercase.')
热心网友
时间:2022-06-22 01:03
你看一下switch后面的语句里是不是有case,这是个循环语句,类似于if else。
lower函数是把字母变成小写。
热心网友
时间:2022-06-22 01:03
method = 'Bilinear';
switch lower(method)
case {'linear','bilinear'}
disp('Method is linear')
case 'cubic'
disp('Method is cubic')
case 'nearest'
disp('Method is nearest')
otherwise
disp('Unknown method.')
end
运行结果为
Method is linear
首先知道matble中lower()函数是:将其包含的字符串中 所有大写字母变为小写字母。
(例子来自 matble中 输入)
help switch
switch 其用法类似C\C++