Using gauspuls

6 次查看(过去 30 天)
Sarah
Sarah 2011-12-13
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

回答(2 个)

contessa mima
contessa mima 2012-3-13
hi, did you fin a solution to this problem?

Sai Charan Sampara
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:

标签

Community Treasure Hunt

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

Start Hunting!

Translated by