Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Triangle in AnalogSignal.m is phase shifted relative to sin, cos #10

Open
stiber opened this issue Apr 22, 2020 · 0 comments
Open

Triangle in AnalogSignal.m is phase shifted relative to sin, cos #10

stiber opened this issue Apr 22, 2020 · 0 comments
Assignees
Labels

Comments

@stiber
Copy link
Owner

stiber commented Apr 22, 2020

The triangle waveform starts at its lowest value, rather than its midpoint, like a sine or cosine. This basically represents a phase shift; it is best that that be avoided.

function y = triangle(f, t)
% TRIANGLE Generate a triangle wave with values in range [0, 1]
% Y = TRIANGLE(F, T)
% F = number of triangles per second
% T = array of times
y = min(rem(t,1/f)/(1/(2*f)), ((1/f)-rem(t,1/f))/(1/(2*f)));
end

@stiber stiber added the bug label Apr 22, 2020
@stiber stiber self-assigned this Apr 22, 2020
@stiber stiber changed the title Triangle is phase shifted relative to sin, cos Triangle in AnalogSignal.m is phase shifted relative to sin, cos Apr 22, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant