How to solve this equation for Laplace transform with matlab?

2 vues (au cours des 30 derniers jours)
soe min aung
soe min aung le 21 Fév 2020
Commenté : soe min aung le 2 Mar 2020
  10 commentaires
Walter Roberson
Walter Roberson le 28 Fév 2020
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 le 2 Mar 2020
Thank you so much sir, I want to try it. If I did not know, let me ask you.

Connectez-vous pour commenter.

Réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by