필터 지우기
필터 지우기

What does 'li' mean?

조회 수: 85 (최근 30일)
Mohiedin Bagheri
Mohiedin Bagheri 2021년 10월 20일
편집: James Tursa 2021년 10월 20일
Hello all,
I have solved an equation in matlab using the following code:
syms x
ththa2 = (2*exp(5*x))/(3*exp(2*x)+1*exp(-2*x))
y = diff(ththa2)
eqn = y == 0
S = solve(eqn)
The answer is
S =
log(-(7^(1/2)*1i)/3)/2
log((7^(1/2)*1i)/3)/2
Would you please tell me what does this '1i' mean in the answer? What kind of a value is this?
Thank you,
Mohi

답변 (3개)

KSSV
KSSV 2021년 10월 20일
편집: KSSV 2021년 10월 20일
1i stands for complex number. i.e. sqrt(-1).
c=2+3*i
c = 2.0000 + 3.0000i
c=2+3*1i
c = 2.0000 + 3.0000i

Image Analyst
Image Analyst 2021년 10월 20일
It's i, the square root of -1, the imaginary constant.

James Tursa
James Tursa 2021년 10월 20일
편집: James Tursa 2021년 10월 20일
1i is used to ensure it isn't confused with a variable named i that you might have in the workspace. I.e., 1i is always sqrt(-1), whereas just i might be sqrt(-1) or a variable that you created named i. It is common to see 1i used in MATLAB for sqrt(-1) because it is always unambiguous.

카테고리

Help CenterFile Exchange에서 Assumptions에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by