How to put a specific expression in a conditional statement?

조회 수: 15 (최근 30일)
ZH
ZH 2020년 7월 21일
답변: Walter Roberson 2020년 7월 21일
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

채택된 답변

Walter Roberson
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개)

카테고리

Help CenterFile 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!

Translated by