Hi there,
I'm trying to synthesise some data for a project I'm doing.
I'm trying to essentially get the datapoints for the f(x) = sin(2x)^3 function with a frequency of 200Hz.
I've looked into other questions here, but so far havent been able to find what I'm looking for.
I'd be really grateful for any tips or solutions. Thanks in advance!

 채택된 답변

Star Strider
Star Strider 2023년 10월 18일

1 개 추천

I am not certain what you are asking.
Try this —
L = 30; % Signal Length (s)
Fs = 200; % Sampling Frequency (Hz)
t = linspace(0, Fs*L, Fs*L+1)/Fs; % Time Vector
f = sin(2*t).^3;
figure
plot(t, f)
grid
xlabel('Time (s)')
ylabel('Amplitude')
title('$f(t) = sin(2\cdot t)^3$', 'Interpreter','latex')
.

댓글 수: 2

Michel
Michel 2023년 10월 19일
This is perfect, thx
I'm working with eeg signals and was trying to synthesise a certain signal complex akin to a sin wave ^3, so this works nicely!
Star Strider
Star Strider 2023년 10월 19일
As always, my pleasure!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 EEG/MEG/ECoG에 대해 자세히 알아보기

제품

릴리스

R2023b

질문:

2023년 10월 18일

댓글:

2023년 10월 19일

Community Treasure Hunt

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

Start Hunting!

Translated by