Comparing Rows of Char Array to String

3 visualizzazioni (ultimi 30 giorni)
Justin Duval
Justin Duval il 11 Feb 2015
Commentato: Justin Duval il 11 Feb 2015
Hi everyone,
I have an 8x3 char array that looks like the following
Wed
Wed
Wed
Wed
Wed
Wed
Wed
Sat
I need to compare it to a string to perform one action when the day is Wednesday (or Wed) and a different action when the day is Saturday (or Sat). For i = 1:8, a loop runs to put the output of this if statement into a numeric vector.
How can I go about properly comparing each row of the char array to a string ('Wed' or 'Sat')?
Thanks in advance!

Risposte (1)

Guillaume
Guillaume il 11 Feb 2015
Use the second output of ismember with the 'rows' option:
c = ['Wed'; 'Wed'; 'Fri'; 'Wed'; 'Sat'];
[~, actionnumber] = ismember(c, ['Wed'; 'Sat'], 'rows')
  4 Commenti
Image Analyst
Image Analyst il 11 Feb 2015
Even more robustness can be gained by casting the day to lower case if you don't really care about the case of the letters. Or you could use strcmpi(). If you don't care about case then it's most robust if your code works regardless if they capitalized the day or not.
if strcmp(lower(dayname(i, :)), 'wed')
if strcmpi(dayname(i, :), 'Wed')
switch lower(dayname(i, :))
case 'wed'
Justin Duval
Justin Duval il 11 Feb 2015
Thanks for the extra input. My code does cover other days of the week as well, I was just including the simplest case based on the set of data in my original post as it was all I needed to convey my problem.
I will swap out the == operator for strcmp, and I will look into switch case statements as well, they look nice.
Thanks again!

Accedi per commentare.

Categorie

Scopri di più su Characters and Strings in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by