フィルターのクリア

why im not able plot graph in 1 sec window of 16 sample

3 ビュー (過去 30 日間)
germanbrain common
germanbrain common 2019 年 8 月 25 日
コメント済み: Image Analyst 2019 年 8 月 27 日
clc;clear all; close all;
A=1;
x=0:0.1:1;
sample=16;
y=A*sin((2*pi./sample)*x)
figure
plot(x,y)
untitled.jpg
  4 件のコメント
dpb
dpb 2019 年 8 月 25 日
x=linspace(0,1,16);
y=A*sin(2*pi*x);
plot(x,y)
germanbrain common
germanbrain common 2019 年 8 月 27 日
thnak you

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

採用された回答

Image Analyst
Image Analyst 2019 年 8 月 25 日
You didn't have anough points to see the sine wave so all you see is a traingle wave. Increase the number of points and use linspace():
numPoints = 50; % Whatever
Amplitude = 1;
t = linspace(0, 1, numPoints);
period = 0.4; % Seconds -- whatever you want;
y = Amplitude * sin((2*pi./period) * t)
plot(t, y, 'bo-', 'LineWidth', 2, 'MarkerSize', 9)
grid on;
xlabel('Time', 'FontSize', 13);
ylabel('Y', 'FontSize', 13);
title('Sine Wave', 'FontSize', 13);
0000 Screenshot.png
  3 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 8 月 27 日
Change the period value, and see the results.
Image Analyst
Image Analyst 2019 年 8 月 27 日
fs (omega) is (2*pi/period). For a 1 second, 1Hz chunk of signal, you'll have one wave of the sine wave. You can pick whatever sampling rate you want. Of course the higher it is, the more accurately you'll draw the signal.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDescriptive Statistics についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by