help ㅜㅜㅜㅜㅜ Convert formulas to Mathlab code
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
Antworten (1)
Guru Mohanty
am 8 Mai 2020
You can define this integral using following steps:
- Declare constants and variables. Use syms to declare a symbolic variable.
- Built the expression under integral.
- Use vpaintegral function to compute definite integral.
Here is sample code for it.
k0=1;x=1;y=1;z0=1;
syms u
expr = cosh(u)^2 * cos(k0*x*cosh(u)) * cos(k0*y*cosh(u)*sinh(u)) * exp(-k0*(cosh(u*z0))^2);
out= vpaintegral(expr,u,[0,inf]);
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!