Borrar filtros
Borrar filtros

How to add Zero after an integer value?

5 visualizaciones (últimos 30 días)
Raj Arora
Raj Arora el 10 de Nov. de 2022
Editada: VBBV el 10 de Nov. de 2022
xcord = [20.76 19.24 20.00];
ycord = [0.0 0.76 -0.76];
Q(loop+new,1) = sprintf(str,nodeno(1,pier)+loop+a,xcord(1,no_of_pier),ycord(1,p),depth-(0.1*(loop)));
Can any one tell me When I am using this code the all values are coming with floating type but 0.0 and 20.0 are not coming. I want these 2 numbers also to come as floating type

Respuestas (1)

VBBV
VBBV el 10 de Nov. de 2022
Use
format long
  2 comentarios
Raj Arora
Raj Arora el 10 de Nov. de 2022
This is not working VBBV.
VBBV
VBBV el 10 de Nov. de 2022
Editada: VBBV el 10 de Nov. de 2022
format long
xcord = [20.76 19.24 20.00]
xcord = 1×3
20.760000000000002 19.239999999999998 20.000000000000000
ycord = [1e-20 0.76 -0.76] % very small value close to zero
ycord = 1×3
0.000000000000000 0.760000000000000 -0.760000000000000

Iniciar sesión para comentar.

Categorías

Más información sobre Vector Fields 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