how to take just 4 digits after point value

3 次查看(过去 30 天)
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]

采纳的回答

Guillaume
Guillaume 2017-11-8
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.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by