Convert numeric values to ASCII code
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Gombo Khorloo
el 17 de Oct. de 2017
Comentada: Star Strider
el 17 de Oct. de 2017
I want to convert numeric values of time and amplitude to ASCII code.
I tried many functions but i haven't got success so far.
Example:
t=2.5
t=50 46 53
0 comentarios
Respuesta aceptada
Star Strider
el 17 de Oct. de 2017
Try this:
t = 2.5;
Out = int64(num2str(t))
Out1 =
1×3 int64 row vector
50 46 53
0 comentarios
Más respuestas (1)
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!