how to precise the number of digits in MATLAB?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
ihssane houhou
el 5 de Dic. de 2018
Comentada: ihssane houhou
el 5 de Dic. de 2018
hi guys
I want to save some images in a folder from matlab using imwrite(), and I want to name them by counting, which means each image will be named by two letters and six digits such as (gt000001, gt000002, gt000003, gt000004, ..., gt001457, ... ,gt200000).
could someone help me do that?
0 comentarios
Respuesta aceptada
Rik
el 5 de Dic. de 2018
You can generate a name like that with the sprintf function:
number=2;
name=sprintf('gt%06d',number);
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB 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!