Creating a piecewise sine function having different frequency components
Mostra commenti meno recenti
Hello,
I am brandnew in Matlab and i would like to generate a piecewise sine function with different frequency components. i.e. a signal at 1 kHz sampling frequency and having 100,200 and 300 Hz frequency components. I check the other topics but couldn't find a proper solution.
1 Commento
John D'Errico
il 19 Mag 2019
Please don't add an answer to an old question just to raise it up. You asked your own question anway.
Risposte (3)
Sulaymon Eshkabilov
il 19 Mag 2019
Modificato: Sulaymon Eshkabilov
il 19 Mag 2019
Hi,
If I've understood your question correctly, this is what you are trying to create:
fs = 1e3; % Sampling frequency [Hz]
t = 0:1/fs:1; % Time space [0, 1] [sec]
f1 = 100;
f2 = 200;
f3 = 300;
S1 = sin(2*pi*f1*t);
S2 = sin(2*pi*f1*t);
S3 = sin(2*pi*f1*t);
Stotal = S1+S2+S3;
plot(t, Stotal)
Note that your fs is too small (it is better to have your fs = 10[kH]) for your generated frequency components of 100, 200, 300 Hz
1 Commento
javeria noor
il 10 Nov 2020
what to do if we want to multiply s1 and s2
Star Strider
il 19 Mag 2019
Try this:
Fs = 1000;
t = linspace(0, 1, 1E+3)/Fs; % Time Vector (1 sec)
f = 100:100:300; % Frequency Vector
sm = sin(2*pi*f(:)*t*Fs)'; % Signal Matrix
sv = sm(:); % Signal Vector
tv = (0:numel(sv)-1/Fs)/Fs;
figure
plot(tv, sv)
grid
sound(sv, Fs) % Listen To The Result
1 Commento
javeria noor
il 10 Nov 2020
what if we want totake product of s1 and s2
Sulaymon Eshkabilov
il 10 Nov 2020
There are two opts. One elementwise multiplication and the other is just product.
% (1) Elementwise:
S1S2_e = s1.*s2;
% (2) Just a product of two row matrix (vector) elements
S1S2_p = s1*s2';
Categorie
Scopri di più su Get Started with Signal Processing Toolbox in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!