Identifying a variable in Matlab

조회 수: 8 (최근 30일)
Ayat Mohammad
Ayat Mohammad 2020년 12월 27일
답변: Walter Roberson 2020년 12월 27일
%characteristic function; w=2*pi/t j=sqrt(-1) syms x Phaiz=int(exp(j*w*x)*y, a, b)
How do I identify t as time, and can some one correct the code please

답변 (1개)

Walter Roberson
Walter Roberson 2020년 12월 27일
%characteristic function;
syms t
w = 2*pi/t;
j = sqrt(-1);
syms a b x y
assume(a>=0 & b>=a)
Phaiz = int(exp(j*w*x)*y, t, a, b)
Phaiz = 

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by