필터 지우기
필터 지우기

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