Open anonymou8 opened 4 years ago
In this document on Expressions the description for wave() function says it's behavior is similar to sin(f*2*pi/length). But actually it's same as sin(f*360/length) because sin() function's parameter is in degrees, not radians.
wave()
sin(f*2*pi/length)
sin(f*360/length)
sin()
Thanks.
In this document on Expressions the description for
wave()
function says it's behavior is similar tosin(f*2*pi/length)
. But actually it's same assin(f*360/length)
becausesin()
function's parameter is in degrees, not radians.Thanks.