strcmp: compare a string with a set of strings

3 visualizaciones (últimos 30 días)
alpedhuez
alpedhuez el 19 de Jun. de 2020
Editada: alpedhuez el 19 de Jun. de 2020
I have a table 'test'
month temperature
---
January
February
---
I want to create a new variable called 'season'. I want to define
spring={January, February, March}
and I want to write things like
strcmp(test.month(1),spring)==1
that is, I want to use compare one string with a set of strings and to return 1 if the string is equal to one of the set of strings. Please advise.

Respuesta aceptada

Fangjun Jiang
Fangjun Jiang el 19 de Jun. de 2020
IsSpring=ismember('January',{'January','Feburary','March'})

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by