Need help.... How to plot sequences

Hello,
I have a report due in two days and have no idea how to plot this sequence. I know almost nothing about Matlab and my tutors as usual have been no help at all.
If some one can help me out here I would greatly appriciate it.
The sequence is:
𝑥(𝑛) = {… , 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, … }
Cheers

2 个评论

Where does the n come into play? What do you want to plot when n = 10 for example?
I want to plot −20 ≤ 𝑛 ≤ 12.

请先登录,再进行评论。

 采纳的回答

Star Strider
Star Strider 2020-11-27

0 个投票

The mod function and the colon,: operator are your friends!

6 个评论

How would I implement the mod function?
Example —
x = 0:30;
y = mod(x, 15);
figure
plot(x, y)
grid
I leave the rest to you!
Right first off thank you for putting me on the right path, however I have staryed off it and went down a different route and have run into trouble. my code is below and I keep getting the sam error of 'error using plot vectors must be the same length'
n = -20:12
x = repmat([5,4,3,2,1],3,15)
linspace = x
plot(n,x)
Error using plot
Vectors must be the same length
Any ideas?
Use the colon operator with the ‘n’ vector, and then operate on it to create the triangular pulses.
That will eliminate the vector length problem.
I really am sorry about this but I dont understand what you mean.
Please experiment!
Use my example as a guide, and carefully read the documentation for colon. Note how to use it to code a descending sequence.

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品

版本

R2020b

标签

Community Treasure Hunt

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

Start Hunting!

Translated by