y(t) = 0.5x_(t/2+1) plot y(t)

5 次查看(过去 30 天)
Aaron Abueg
Aaron Abueg 2019-10-17
How do I plot this on matlab?
heeelllppp.png

回答(2 个)

Walter iacomacci
Walter iacomacci 2019-10-17
Hey There.
If the function you want to plot is y=0.5*((t/2)+1) , this is a way to do it on MATLAB
t=linspace(0,100,1000)
y=0.5*((t/2)+1)
plot(t,y)
  3 个评论
Walter iacomacci
Walter iacomacci 2019-10-17
Hi Aaron, Even with the new formatting i can't understand if the X you have there is a variable or no, and if it is so you must assign values like t to make an appropiate plot.
So in case you want X as a variable you can assign values with the linspace function like the same way showed in the answer above.
To know more about the linspace function you can visit the next link: Linspace
Aaron Abueg
Aaron Abueg 2019-10-17
The y(t) function is 0.5 * x [of] (t/2+1).

请先登录,再进行评论。


DHARANIBOOPATHI
DHARANIBOOPATHI 2023-4-20
x(t)=0.5ncos(2pift)
  1 个评论
Walter Roberson
Walter Roberson 2023-4-20
syms f n t real
x(t) = 0.5 * n * cos(2*pi*f*t)
x(t) = 
This can only be plotted if you have specific numeric values for f and n.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

标签

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by