在 Python 中可以做这样的事情
the_weather_is = 'sunshiny'
bad_mood = {'dreary', 'drizzly', 'flawy', 'blustery', 'thundery'}
if the_weather_is in bad_mood:
print 'Stay at home...'
else:
print 'All fine...'
MATLAB 等效项是什么样子的,即有一个字符串列表(选项)并检查是否string
在list
?
其实我什至不知道,什么可以用作 MATLAB 中的列表。细胞阵列?