polynomial of x and y

2 ビュー (過去 30 日間)
Thrupthi Jain
Thrupthi Jain 2024 年 11 月 5 日
回答済み: Anjaneyulu Bairi 2024 年 11 月 5 日
Input:
syms x y
p=x*y
q=y*x
Output:
p=x*y
q=x*y
In my code, x*y is not equal to y*x. I want q as y*x, not x*y. By default Matlab is treating x*y as y*x.
I need help with this.
Thank You.
  1 件のコメント
Torsten
Torsten 2024 年 11 月 5 日
MATLAB assumes commutativity of multiplication. Thus computations in general non-commutative rings or similar algebraic structures is not possible (at least to the best of my knowledge).

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

回答 (1 件)

Anjaneyulu Bairi
Anjaneyulu Bairi 2024 年 11 月 5 日
By default, MATLAB assumes all individual symbolic variables to be scalars, which inherently implies commutativity for scalar multiplication. Therefore, it is not possible to disable the commutative property for scalar symbolic variables in MATLAB.
Below MATLAB Answer might give you more information and there is a workaround mention which says define your symbols as matrices to remove commutative property.

カテゴリ

Help Center および File ExchangeNumber Theory についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by