How to put a specific expression in a conditional statement?
1 次查看(过去 30 天)
显示 更早的评论
I have 2 timetables. One contians headers that have "_Units" and the other does not. I am trying to create a conditional statement that searches the timetable then takes the search and implements it into a conditional statement.
I have tried a few different functions, but need a bit of direction.
if
disp('This is a excel file')
else
disp('This is an another file')
end
0 个评论
采纳的回答
Walter Roberson
2020-7-21
if contains(strjoin(YourTable.Properties.VariableNames), '_Units_' )
You do not care which variable name contains the string, only that it appears at least once.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Large Files and Big Data 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!