How to convert day information to a number?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
John Lee
el 24 de Sept. de 2021
Comentada: Star Strider
el 24 de Sept. de 2021
How can I convert day information to a number?
For instance, Mon to 1, Tue to 2, etc.
Fo from character to number data.
0 comentarios
Respuesta aceptada
Star Strider
el 24 de Sept. de 2021
Experiment with something like this —
daynr = @(x) find(strcmp(x, {'Mon','Tue','Wed','Thu','Fri','Sat','sun'}));
nr = daynr('Thu')
Everything depends on the context it will be used in, so this is just an example of one approach.
.
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Whos en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!