필터 지우기
필터 지우기

How to generate a signal with logarithmic increasing amplitude and a constant frequency?

조회 수: 1 (최근 30일)
Hello everyone,
Im trying to generate a signal with an logarithmic increasing amplitude and constant frequency.
I also need to write a code for another signal with changing both (amplitude and frequency), but i think it will be easy after i know how to do the first one.
Regards,
Ali

채택된 답변

David Hill
David Hill 2022년 2월 15일
t=0:0.001:1;
f=60;
y=log(t+1).*sin(2*pi*f*t);
plot(t,y)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Smoothing and Denoising에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by