High Frequency Square Wave

11 views (last 30 days)
Nishant Kumar
Nishant Kumar on 30 Nov 2020
Edited: Setsuna Yuuki. on 30 Nov 2020
I want to generate a square wave with a frequency of 100MHz for a very short duration. Help me out please.

Accepted Answer

Setsuna Yuuki.
Setsuna Yuuki. on 30 Nov 2020
Edited: Setsuna Yuuki. on 30 Nov 2020
You can try with square() --> More Info
For example:
time = linspace(0,1,1000);
frecuency = 5; %or other frecuency
x = square(2*pi*frecuency*time);
plot(time,x)

More Answers (0)

Community Treasure Hunt

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

Start Hunting!