Using gauspuls
8 次查看(过去 30 天)
显示 更早的评论
Hello Everyone,
Is anyone familiar with the gauspuls function? I am trying to create a combined signal. The first signal is a simple sinusoidal signal. I want the second signal to be a gaussian sinusoidal pulse signal that occurs within the time range that I have already specified for my sine signal. Please see the code to see what I have so far.
clc;
clear all;
addpath(genpath(pwd));
TimeStep = 0.01*2*pi; %time increment
Time.Start = 0; %time interval starting time
Time.End = 50*2*pi; %time interval ending time
Time = (Time.Start):(TimeStep):(Time.End); %time
%Reference Signal
Sig.Ref = 1*sin(1*2*pi*Time + 0); %A = 1, f = 1, phase = 0
%Abnormal Signal
Sig.Ab = gauspuls()?
%Combined Signal
Sig.Comb = Sig.Ref + Sig.Ab;
My problem is that I don't really know how to define my pulse signal to fit within the time boundaries of my original sinusoidal signal. I want to be able to change the frequency, amplitude, and duration of the pulse as well. Any ideas or helpful hints?? Thanks for your time.
-Sarah
0 个评论
回答(2 个)
Sai Charan Sampara
2022-6-30
gauspuls is used to create gaussian modulated sinusoidal RF pulse. For having in same time boundaries give the first input to gauspuls as Time. Refer to the following link for more details on the gauspuls function:
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Waveform Generation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!