Borrar filtros
Borrar filtros

convert double to string!

1.132 visualizaciones (últimos 30 días)
fatemeh
fatemeh el 29 de Dic. de 2013
Comentada: Azzi Abdelmalek el 29 de Dic. de 2013
I want convert double number like 0.222833 to string but when i using num2str the number convert to '0.22283' and sixth digit of number is removed ,can u help me to convert it to string?

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 29 de Dic. de 2013
a=0.222833
a=sprintf('%.6f',a)
  2 comentarios
fatemeh
fatemeh el 29 de Dic. de 2013
thank you very much
Azzi Abdelmalek
Azzi Abdelmalek el 29 de Dic. de 2013
%or
b=sprintf('%.20f',a);
idx=regexp(b,'0+','start');
b(idx(end):end)=[]

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by