仿真x(t)=sin(t)sin(10t)的波形,大学生期末考试,实在是不会了
详细代码如下,望采纳
% Define the time range for the simulation t = 0:0.01:10; % 计算 x = sin(t) .* sin(10*t); % 绘图 plot(t, x); xlabel('Time (t)'); ylabel('Amplitude (x(t))'); title('Simulated Waveform');