필터 지우기
필터 지우기

how to take just 4 digits after point value

조회 수: 3 (최근 30일)
Elysi Cochin
Elysi Cochin 2017년 11월 8일
답변: Guillaume 2017년 11월 8일
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