Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
how do i write this equation?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
hello, how do i write this?
my code is
k = abs(x).*exp(-abs(x))
2 Kommentare
Walter Roberson
am 28 Mai 2020
Your k (lowercase) is fine for that; now you just have to integrate that according to the methods of your assignment.
Antworten (1)
Nishant Gupta
am 30 Mai 2020
You can use 'int' function to perform integration as following:
syms x;
k = int(abs(x).*exp(-abs(x)),x,[-3,3]);
1 Kommentar
Walter Roberson
am 30 Mai 2020
This Question was really the continuation of another Question, in which the assignment was to use a riemann sum to approximate the integral.
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!