-1

MATLAB で数式を作成するのが困難です。まず、私はこのソフトウェアについてよく理解していません。

ですから、例えばこんな質問をしたいです。

% b is the input binary bit stream
% f is the frequency of the carrier 
n = length(b); % determine the length of bit stream
t = 0:0.01:n-0.01;   % time axis
for i = 1:n
bw( ((i-1)*100)+1 : i*100 ) = b(i); % loop       
end
carrier = cos(2*pi*f*t); % carrier signal
modulated = bw.*carrier; % modulated signal

のキャリア信号s1(t)=cos(10*pi*t)とユニポーラ Non Return to Zero バイナリ ビット ストリームをもつ ASK 変調信号の時間領域をプロットします。m1(t)

なぜループを使用する必要があるのですか? 数式はどのように信号を作成できますか?

4

1 に答える 1

0

ここから開始して、 matlab で信号をプロットする方法をお勧めします。ループを使用すると、time(t) が 0 から無限大に変化するときに結果を取得できます。

于 2013-10-19T03:37:00.693 に答える