I'm certain that this question is quite simple, but I have no idea of how to do it. Could someone help me?

1 次查看(过去 30 天)
The question is:
Generate a vector of data representing a set of time values (in seconds). Create 5 seconds worth of time data at a spacing of 0.001 seconds (1ms) t=0:0.001:5;
I am unsure if I'm supposed to get a graphical vector or just values.
  5 个评论

请先登录,再进行评论。

采纳的回答

Ameer Hamza
Ameer Hamza 2018-5-21
You can visualize it using a plot()
t = 0:0.001:5;
y = sin(2*pi*8*t);
plot(t, y);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matched Filter and Ambiguity Function 的更多信息

标签

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by