필터 지우기
필터 지우기

exponential with fuction integrate

조회 수: 2 (최근 30일)
Eduardo Dalmaso
Eduardo Dalmaso 2019년 5월 21일
답변: Star Strider 2019년 5월 21일
Hi guys,
I have a problem here, i trying to integrate the fuction exp^(-j*k*w*t) and its returning to me: F =-1/(T*exp^(j*k*t*w)*j*k*t*log(exp))
On matlab:
syms t k w exp j T;
F = (1/T)*int(f)
What im doing wrong ?
Thanks,

채택된 답변

Star Strider
Star Strider 2019년 5월 21일
You need to remove ’exp’ and ‘j’ from your syms call:
syms t k w T
You want to use the function exp, and the imaginary operator j, so do not use them as variables. (Also, using 1j removes any additional ambiguity.)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Formula Manipulation and Simplification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by