I did a simple test.
What does the lines above bs mean?

댓글 수: 2

KSSV
KSSV 2020년 6월 17일
syms stand for symbolic. It is a symbolic computation.
Ivor Horton
Ivor Horton 2020년 6월 17일
Yes I know it's symbolic computation. But why only b has upper line and a doesn't? What does the lines mean?

댓글을 달려면 로그인하십시오.

 채택된 답변

Steven Lord
Steven Lord 2020년 6월 17일

0 개 추천

It indicates that the expression involves the complex conjugate of those elements of b. You didn't tell Symbolic Math Toolbox that b was real, so it has to assume b could be complex. You then use the conjugate transpose operator ' instead of the non-conjugate transpose operator .' so it conjugated b.
syms a
syms b real
withConjugate = [a', b']
withoutConjugate = [a.', b.']

추가 답변 (0개)

카테고리

태그

질문:

2020년 6월 17일

답변:

2020년 6월 17일

Community Treasure Hunt

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

Start Hunting!

Translated by