Calculate Mean of vector in more decimals
조회 수: 8 (최근 30일)
이전 댓글 표시
I want to calculate the mean of a vector in more than 4 decimals. The code
A = [0,1,9];
mean(A)
gives
ans = 3.3333
But I want 3.333333
댓글 수: 0
채택된 답변
Michael
2024년 6월 3일
3.3333 is only the display of the variable 'ans'. The result of the calculation has better accuracy. Type
format long
and you can see the result with all significant decimals.
댓글 수: 0
추가 답변 (1개)
Image Analyst
2024년 6월 3일
편집: Image Analyst
2024년 6월 3일
It is already that.
A = [0,1,9];
format short g
m = mean(A)
fprintf('Mean with 30 decimal places is %.30f.\n', m);
format long g
m = mean(A)
and
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Filename Construction에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!