Change the time format ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Thar
el 9 de Abr. de 2019
Comentada: madhan ravi
el 10 de Abr. de 2019
Hi!
I have the following time format:
80057
81409
91502
102514
and i want to take the format:
8:00:57
8:14:09
9:15:02
10:25:14
Any ideas?
0 comentarios
Respuesta aceptada
Bob Thompson
el 9 de Abr. de 2019
I'm assuming that you have an array of doubles. This works fine for the inputs, but will not be possible with the outputs. I am outputting the results as string, therefore.
A = [80057
81409
91502
102514];
B = num2str(A,'%06d');
C = repmat(':',size(B,1),1);
B = [B(:,1:2),B_1,B(:,3:4),B_1,B(:,5:6)];
3 comentarios
Bob Thompson
el 9 de Abr. de 2019
Yes, sorry. That was a hold over from some other testing I was doing.
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!