How to produce a plot for signals?

3 ビュー (過去 30 日間)
Connor Wright
Connor Wright 2020 年 11 月 13 日
編集済み: Setsuna Yuuki. 2020 年 11 月 13 日
Hello,
I have to produce a plot for a sine wave using the following values. Uni being what it is at the moment it's pointless trying to get help from Lecturers.
Values for this plots are as follows -
𝑥 = 2sin (5𝑡)
𝑦 = 2cos (3𝑡)
I understand how to actually tell MatLab to produce the graph but that's the limit of my understanding here.
Thanks

採用された回答

Setsuna Yuuki.
Setsuna Yuuki. 2020 年 11 月 13 日
編集済み: Setsuna Yuuki. 2020 年 11 月 13 日
t = 0:1e-3:5 %time of sampling
x = 2*sin(5*t); %evaluated function
plot(t,x); %plot(axis x,axis y)
More info: https://es.mathworks.com/help/matlab/ref/plot.html
  1 件のコメント
Connor Wright
Connor Wright 2020 年 11 月 13 日
Brilliant thank you!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpectral Measurements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by