Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
how do i write this equation?
조회 수: 1 (최근 30일)
이전 댓글 표시
hello, how do i write this?
my code is
k = abs(x).*exp(-abs(x))
댓글 수: 2
Walter Roberson
2020년 5월 28일
Your k (lowercase) is fine for that; now you just have to integrate that according to the methods of your assignment.
답변 (1개)
Nishant Gupta
2020년 5월 30일
You can use 'int' function to perform integration as following:
syms x;
k = int(abs(x).*exp(-abs(x)),x,[-3,3]);
댓글 수: 1
Walter Roberson
2020년 5월 30일
This Question was really the continuation of another Question, in which the assignment was to use a riemann sum to approximate the integral.
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!