How to solve this equation for Laplace transform with matlab?

조회 수: 2 (최근 30일)
soe min aung
soe min aung 2020년 2월 21일
댓글: soe min aung 2020년 3월 2일
  댓글 수: 10
Walter Roberson
Walter Roberson 2020년 2월 28일
Your zeta is a symbolic expression in k and y according to symvar(), but it also contains k2 inside fourier() calls.
Perhaps you should do
kvals = 0:100;
yvals = linspace(-200,200,101);
[K,Y] = meshgrid(kvals, yvals);
Zsym = subs(zeta, {k, y}, {K, Y});
Z = double(Zsym);
surf(K,Y,Z)
However in practice this does not work: after the substitution, double() is not able to resolve some of the values to numeric. I discovered that some of them can be converted to a better form by using simplify(Zsym), but that is slow.
soe min aung
soe min aung 2020년 3월 2일
Thank you so much sir, I want to try it. If I did not know, let me ask you.

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by