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