How to level shift a sine wave mathematically?
Show older comments
Hello MatLab users,
Im currently working on a small program that gives me a certain number of values of a 60 Hz sine wave signal but unfortunately I was only able to create a sine wave that has positive and negative values, but what I really want is to get only positive values so I would need my sine wave to be level shifted up (for example 0 to 3). Is there any way to do this? I want to do this mathematically only. Help is appreciated, thank you all. I leave my code below and picture of plot of the sine wave.
f = 60;
fs = 1e4; % samples per second
t=0:1/fs:0.017; % 1/fs is seconds per sample
x = sin(2*3.14*f*t);
plot(t,x)
x(:)
5 Comments
Aquatris
on 23 Aug 2018
After you apply the suggestion of Geoff, you will get a sine wave that is between 0 and 2. Then you can change the range by simple multiplication;
x = (1 + sin(2*pi*f*t))*n/2; % sine wave values between 0 and n
Alex Avila
on 23 Aug 2018
dpb
on 23 Aug 2018
"_min not to be 0"_
That's what I showed in Answer is general scaling.
It's just mx+b applied to the function range...
Aquatris
on 24 Aug 2018
Geoff did have a comment at the time I wrote mine. dqp gave you the answer below but if you need further explanation here it is;
First you create your sine wave that is between -1 and +1;
x = sin(2*pi*f*t);
You want this [-1,1] range to be [a,b] range instead, which is a simple linear mapping. This can be done by;
x_scaled = (x-(-1))*(b-a)/(1-(-1))+ a
So an example is;
t = 0:0.001:10;
x = sin(t);
a = 0.5; b = 3;
x_scaled = (x-(-1))*(b-a)/(1-(-1))+ a;
plot(t,x,t,x_scaled)
Alex Avila
on 24 Aug 2018
Accepted Answer
More Answers (0)
Categories
Find more on MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!