フィルターのクリア

How parentheses effects multiplication with pi ?

5 ビュー (過去 30 日間)
Emre Doruk
Emre Doruk 2020 年 8 月 4 日
編集済み: Bruno Luong 2020 年 8 月 5 日
Hi,
I am trying to generate sine wave. I am usning following two code lines. But they are slightly different (about e-15). Why is it happenning ? What is the differences of two lines;
f0=5e2;
fs=500e2;
len=3e3;
dt=1/fs;
t=0:dt:(len-1);
sing1= sin (2*pi*f0*t);
sing2= sin(2*pi*(f0*t));
isequal(sing1,sing2)
Thanks for your help,

採用された回答

Bruno Luong
Bruno Luong 2020 年 8 月 5 日
編集済み: Bruno Luong 2020 年 8 月 5 日
"While floating-point addition and multiplication are both commutative (a + b = b + a and a × b = b × a), they are not necessarily associative. That is, (a + b) + c is not necessarily equal to a + (b + c). ... "
  • "(2*pi*f0*t)" interpreted by MATLAB as ((2*pi)*f0)*t
  • "2*pi*(f0*t)" interpreted by MATLAB as (2*pi)*(f0*t)
As floating-point multiplication is NOT ASSOCIATIVE, both results might be different.
  5 件のコメント
Bruno Luong
Bruno Luong 2020 年 8 月 5 日
Sometime this non-associativity is a real headeach, such as finding a limits of a sign- alternate series by partial sum, or integral of an oscillated signal (any wave propagation SW might encounters this). There is a real challenge to know what really the limits and the order of the sum can make the result change widely.
Emre Doruk
Emre Doruk 2020 年 8 月 5 日
Actually I realized it recently, I thougth this problem is about pi. Because it is irrational and maybe MATLAB coverge it sth. I asked for this reason but I see that it is more common from this. I should check all of my old codes which needs exact values. Genereally it can be accept like precision mistake but sometimes I really need exact value.

サインインしてコメントする。

その他の回答 (1 件)

madhan ravi
madhan ravi 2020 年 8 月 4 日
In the first the order of operation is from left to right.
In the second the order of operation is inside the parenthesis and then the outer.
  7 件のコメント
Emre Doruk
Emre Doruk 2020 年 8 月 5 日
Thanks for your clear expleantion.
madhan ravi
madhan ravi 2020 年 8 月 5 日
Thanks Stephen:)

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeDynamic System Models についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by