how do i write this equation?

hello, how do i write this?
my code is
k = abs(x).*exp(-abs(x))

2 commentaires

Walter Roberson
Walter Roberson le 28 Mai 2020
Your k (lowercase) is fine for that; now you just have to integrate that according to the methods of your assignment.
Reza Ghasemi
Reza Ghasemi le 28 Mai 2020
yup i got it thank you

Réponses (1)

Nishant Gupta
Nishant Gupta le 30 Mai 2020

0 votes

You can use 'int' function to perform integration as following:
syms x;
k = int(abs(x).*exp(-abs(x)),x,[-3,3]);

1 commentaire

Walter Roberson
Walter Roberson le 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.

Cette question est clôturée.

Clôturé :

le 20 Août 2021

Community Treasure Hunt

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

Start Hunting!

Translated by