Compute equations with given variables and matrices
Show older comments
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
on 2 Sep 2022
0 votes
๐ฅ๐ฆ^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
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!