Hello everyone, I have this question. Any help in appreciated. ^_^

2 vues (au cours des 30 derniers jours)
Refat Chowdhury
Refat Chowdhury le 11 Mar 2017
Commenté : Image Analyst le 11 Mar 2017
Building a square wave. It is defined as f(t) = {1 if 0 < t < T, -1 if –T < t < 0}.
a. Create a script that plots a single square wave. Label the graph.
b. Change the above script to include a train of square waves consisting of 4 squares pieces.

Réponse acceptée

Image Analyst
Image Analyst le 11 Mar 2017
Try repmat() or repelem(), or use the square() function.
  2 commentaires
Refat Chowdhury
Refat Chowdhury le 11 Mar 2017
Hi. So are you saying for part b, I am going to use one of these functions?
Image Analyst
Image Analyst le 11 Mar 2017
For part a, I'd use linspace to create T. Then I'd use ones() to create an array of 1's. Then I'd use indexing to set some of them to -1. Then I'd use plot(), title(), xlabel(), and ylabel() to make the plot.
For part b, I'd use repmat() to replicate the single pulse from part a.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by