I want to know the difference between 1 and 1.0000

조회 수: 17 (최근 30일)
neal paze
neal paze 2021년 9월 7일
댓글: neal paze 2021년 9월 9일
When I do logarithms, I run into some difficulties.
a=d3/f1;
b=log10(a);
c=10*log10(a);
d=1.0000;
d3=697.5512; f1=697.5512;
And the result is a=1.0000; and log10(a)=-9.643274665532978e-15
But if I type d=1.0000,the result is d=1; log10(d)=1

채택된 답변

Abolfazl Chaman Motlagh
Abolfazl Chaman Motlagh 2021년 9월 7일
편집: Abolfazl Chaman Motlagh 2021년 9월 7일
first of all log10(1) should be zero!
but beside this,
i think you are reporting your workspace wich is produced after some calculation. and you thought the number you see is exactly what it is. the d3 and f1 might not be exactly what you see in workspace , it just show 4 decimal digits of them.
i am copying your code and run it here to see what i mean :
d3=697.5512;
f1=697.5512;
a=d3/f1;
log10(a)
ans = 0
you see it is correct but here i am resolving your result to see what i meant before :
format long
d3_ = f1 * (10^(-9.643274665532978e-15))
d3_ =
6.975511999999845e+02
so d3 and f1 are not exactly what is reported in user interface of workspace. for see them more precisely call
format long
and print them. (or use vpa function)

추가 답변 (1개)

Jan
Jan 2021년 9월 7일
편집: Jan 2021년 9월 7일
The output is mimited to 4 digits after the decimal point. Then "1" means 1.0, and "1.0000" means that there is a digit differing from 0 hidden on the right.
Check this by:
a - 1 % Not 0
d - 1 % 0
e1 - 1 % Not 0

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by