why matlab can't plot signals ?

1 回表示 (過去 30 日間)
Mohamed
Mohamed 2024 年 1 月 6 日
コメント済み: Dyuman Joshi 2024 年 1 月 6 日
clc;
clear all;
close all;
Fc= input(' Carrier frequency = ');
Fm= input(' message frequency = ');
Am=input('Message signal amplitude = ');
Ac=input('Carrier signal amplitude = ');
B=input('Modulation index = ');
t=0: 0.0001;0.1;
C_t= Ac*cos(2*pi*Fc*t);
subplot(3,1,1);
plot(t,C_t);
ylabel('amplitude');xlabel('time index');title('Carrier signal');
M_t= Am*sin(2*pi*Fm*t);
subplot(3,1,2);
plot(t,M_t);
ylabel('amplitude');xlabel('time index');title('Modulating signal');
S_t = Ac*cos((2*pi*Fc*t)+ B*cos(2*pi*Fm*t));
subplot(3,1,3);
plot(t,S_t);
ylabel('amplitude');xlabel('time index');title('Frequency Modulated signal');
  1 件のコメント
Mohamed
Mohamed 2024 年 1 月 6 日

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

採用された回答

Dyuman Joshi
Dyuman Joshi 2024 年 1 月 6 日
編集済み: Dyuman Joshi 2024 年 1 月 6 日
Because there's a typo, semi-colon instead of colon in defining t.
% v
t=0: 0.0001;0.1;
t
t = 0
t here is a scalar, which when you supplied to plot() without specifying a marker does not result in a plot.
Fix the typo and your code will work as expected.
  2 件のコメント
Mohamed
Mohamed 2024 年 1 月 6 日
thanks mate
Dyuman Joshi
Dyuman Joshi 2024 年 1 月 6 日
You're welcome!

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

その他の回答 (1 件)

madhan ravi
madhan ravi 2024 年 1 月 6 日
t = 0 : 0.0001 : 0.1;
% ^
  1 件のコメント
Mohamed
Mohamed 2024 年 1 月 6 日
thanks

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

カテゴリ

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

タグ

製品


リリース

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by