You are now following this Submission
- You will see updates in your followed content feed
- You may receive emails, depending on your communication preferences
The usage is the same as sin(2*pi*f*t), but the triangular wave is generated with an amplitude between 0 and 1.
So to generate one second of a triangle wave of amplitude 2 with frequency 5 Hz (sampled each millisecond)
f = 5;
t = 0:0.001:1;
A = 2;
wave = A*triangle(2*pi*f*t);
Note: the wave is generated with positive amplitude (i.e. centered around half of the amplitude). Check the comment in the code to easily change this behaviour.
Cite As
Michele Antolini (2026). Generation of triangle wave (https://uk.mathworks.com/matlabcentral/fileexchange/46987-generation-of-triangle-wave), MATLAB Central File Exchange. Retrieved .
Acknowledgements
Inspired: Generation of Square,Triangular & Trapezoidal wave in MATLAB, triangleWave( time, amplitude, waveL, phaseShift)
General Information
- Version 1.2.0.0 (101 Bytes)
MATLAB Release Compatibility
- Compatible with any release
Platform Compatibility
- Windows
- macOS
- Linux
