Borrar filtros
Borrar filtros

how to take just 4 digits after point value

3 visualizaciones (últimos 30 días)
Elysi Cochin
Elysi Cochin el 8 de Nov. de 2017
Respondida: Guillaume el 8 de Nov. de 2017
how to take just the 4 digits after point value (from vec1) and change the remaining to zero (as shown in vec2)
vec1 = [0.58350447046727 0.33968780507470 0.95356905156671]
vec2 = [0.58350000000000 0.33970000000000 0.95360000000000]

Respuesta aceptada

Guillaume
Guillaume el 8 de Nov. de 2017
round down to 4 decimals:
vec2 = round(vec1, 4);
display with remaining zeros:
format long
vec2
I personally greatly dislike that display format and much prefer format longg.

Más respuestas (0)

Categorías

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