how to preform Laplace transform?

조회 수: 1 (최근 30일)
Adham Elkhouly
Adham Elkhouly 2021년 4월 26일
댓글: Adham Elkhouly 2021년 4월 26일
for i=late+1:length(x)
delayed_signal(i) = x(i)+alpha*x(i-late);
end
app.y = delayed_signal;
app.x_n = x;
x_s = laplace(x);
y_s = laplace(delayed_signal);
h_s = x_s/y_s;
I am tring to Laplace tranform the variable 'x': a .wav folder, read through 'audioread
and 'y' the same file with an echo, and then divide them and put them in 'h_s', but I keep getting the following error at the line where I define 'y_s'
Undefined function 'laplace' for input arguments of type 'double'
can someone please explain what this line means and how to fix it? - TIA

답변 (1개)

Matt J
Matt J 2021년 4월 26일
편집: Matt J 2021년 4월 26일
The laplace() command only works on Symbolic Math Toolbox variables, e.g.,
syms y(t)
y=exp(-t).*heaviside(t);
Y=laplace( y )
Y = 
  댓글 수: 6
Matt J
Matt J 2021년 4월 26일
or deconv().
Adham Elkhouly
Adham Elkhouly 2021년 4월 26일
I am a bit of a beginner in using MATLAB, so I don't really know what FFT is but I will look it up

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

카테고리

Help CenterFile Exchange에서 Analog Devices ADALM1000 Support from Data Acquisition Toolbox에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by