How to put a specific expression in a conditional statement?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
ZH
le 21 Juil 2020
Réponse apportée : Walter Roberson
le 21 Juil 2020
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 commentaires
Réponse acceptée
Walter Roberson
le 21 Juil 2020
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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Large Files and Big Data dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!