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)
なぜループを使用する必要があるのですか? 数式はどのように信号を作成できますか?