How to convert day information to a number?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
John Lee
am 24 Sep. 2021
Kommentiert: Star Strider
am 24 Sep. 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 Kommentare
Akzeptierte Antwort
Star Strider
am 24 Sep. 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Whos finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!