フィルターのクリア

Conjugate of an Array Consisting of Symbolic Scalars

1 回表示 (過去 30 日間)
Ali Baig
Ali Baig 2018 年 3 月 16 日
コメント済み: Ali Baig 2018 年 3 月 16 日
Let's assume that there is an array 8x1 array of symbolic scalars, which can be defined using
h = sym('h',[8 1]);
When I take its conjugate using the command
disp(h')
The output MATLAB shows is
[ conj(h1), conj(h2), conj(h3), conj(h4), conj(h5), conj(h6), conj(h7), conj(h8)]
Since I know that all the entries in the symbolic array are scalars, and therefore, conj(h1) should be equal to h1. How can I ensure this assumption in MATLAB?
Thank you.

採用された回答

Birdman
Birdman 2018 年 3 月 16 日
h = sym('h',[8 1]);
assume(h,'real');
disp(h')
  1 件のコメント
Ali Baig
Ali Baig 2018 年 3 月 16 日
Thank you Dear @Birdman

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConversion Between Symbolic and Numeric についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by