meaning of exponential factor in MATLAB output

조회 수: 2 (최근 30일)
Zahra Yousefi Darani
Zahra Yousefi Darani 2022년 7월 8일
댓글: Zahra Yousefi Darani 2022년 7월 8일
I got these P.values:
1.0e-112 *
0.0000 0.0000 0.0000 0.1819
Even with format short, I see this : 1.0e-112 *
What does it mean?

채택된 답변

Adam Danz
Adam Danz 2022년 7월 8일
편집: Adam Danz 2022년 7월 8일
1.0e-112 is 100 septrigintillionths or or 0.0000.....1 where there are 111 zeros to the right of the decimal place.
Multiply that value by the vector of p values to get calculated p value.
1.0e-112 * 0.1819
ans = 1.8190e-113
Now it's 0.000........1819 with 112 0s to the right of the decimal before the ending.
In other words, the p value would be considered "highly significant" and you can reject the null hypothesis.
See also format options, though none of them will show 100+ leading 0s.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by