Main Content

Slew Rate of Triangular Waveform

This example shows how to use the slew rate as an estimate of the rising and falling slopes of a triangular waveform. Create three triangular waveforms. One waveform has rising-falling slopes of ± 2 , one waveform has rising-falling slopes of ± 1 2 , and one waveform has a rising slope of + 2 and a falling slope of - 1 2 . Useslewrate找到slopes of the waveforms.

Usetripulsto create a triangular waveform with rising-falling slopes of ± 2 . Set the sampling interval to 0.01 seconds, which corresponds to a sample rate of 100 hertz.

dt = 0.01; t = -2:dt:2; x = tripuls(t);

Compute and plot the slew rate for the triangular waveform. Input the sample rate (100 Hz) to obtain the correct positive and negative slope values.

slewrate(x,1/dt)

Figure Slew Rate Plot contains an axes object. The axes object contains 12 objects of type patch, line. These objects represent slew rate, signal, upper cross, lower cross, upper boundary, upper state, lower boundary, upper reference, lower reference, lower state.

ans =1×22.0000 -2.0000

Change the width of the triangular waveform so it has slopes of ± 1 2 . Compute and plot the slew rate.

x = tripuls(t,4); slewrate(x,1/dt)

Figure Slew Rate Plot contains an axes object. The axes object contains 12 objects of type patch, line. These objects represent slew rate, signal, upper cross, lower cross, upper boundary, upper state, lower boundary, upper reference, lower reference, lower state.

ans =1×20.5000 -0.5000

Create a triangular waveform with a rising slope of + 2 and a falling slope of - 1 2 . Compute the slew rate.

x = tripuls(t,5/2,-3/5); s = slewrate(x,1/dt)
s =1×22.0000 -0.5000

The first element ofsis the rising slope and the second element is the falling slope. Plot the result.

slewrate(x,1/dt);

Figure Slew Rate Plot contains an axes object. The axes object contains 12 objects of type patch, line. These objects represent slew rate, signal, upper cross, lower cross, upper boundary, upper state, lower boundary, upper reference, lower reference, lower state.

See Also

|