Compute equations with given variables and matrices

2 views (last 30 days)
Suppose x=2 and y=5.
๐‘ง = [ 4 1
2 3
1 7 ],
๐‘š = [ 4 5 3
5 1 7
1 3 6 ],
๐‘› = [ 3 3 5
2 6 4
1 9 1 ]
Use MATLAB command to compute the following: ๐‘ฅ๐‘ฆ^4/๐‘ฅ^2 , ๐‘ฅ๐‘ฆ^3 โˆ’ ๐‘ฅ^2/๐‘ฅ^3 โˆ’1 , ๐‘š ร— ๐‘ง, sin(๐‘š) , ๐‘š ร— ๐‘› (๐‘๐‘œ๐‘š๐‘๐‘œ๐‘›๐‘’๐‘›๐‘ก๐‘ค๐‘–๐‘ ๐‘’ ๐‘œ๐‘Ÿ ๐‘’๐‘™๐‘’๐‘š๐‘’๐‘›๐‘ก ๐‘๐‘ฆ ๐‘’๐‘™๐‘’๐‘š๐‘’๐‘›๐‘ก)

Answers (1)

Chunru
Chunru on 2 Sep 2022
๐‘ฅ๐‘ฆ^4/๐‘ฅ^2 : x*y^4/x^2
๐‘ฅ๐‘ฆ^3 โˆ’ ๐‘ฅ^2/๐‘ฅ^3 โˆ’1: similar to above
๐‘š ร— ๐‘ง: m*z
sin(๐‘š): You guess?
๐‘š ร— ๐‘› (๐‘๐‘œ๐‘š๐‘๐‘œ๐‘›๐‘’๐‘›๐‘ก๐‘ค๐‘–๐‘ ๐‘’ ๐‘œ๐‘Ÿ ๐‘’๐‘™๐‘’๐‘š๐‘’๐‘›๐‘ก ๐‘๐‘ฆ ๐‘’๐‘™๐‘’๐‘š๐‘’๐‘›๐‘ก): m.*n

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Tags

Products


Release

R2022a

Community Treasure Hunt

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

Start Hunting!