Why am I getting a wrong matrix inverse when using a Math Function block set to 'pow' in Simulink?

2 次查看(过去 30 天)
I want to calculate a matrix inverse in Simulink. For example, for matrix A = [4 0; 0 16]. I am using a Math Function block set to 'pow' to do the inverse. However, I get erroneous result as below:
A^-1 = [0.25 inf; inf 0.0625]
rather than
A^-1 = [0.25 0; 0 0.0625]

采纳的回答

MathWorks Support Team
Using the Math Function block set to 'pow' to do the inverse operation does the element-wise inverse rather than inverting the whole matrix. To carry out a matrix inverse, please follow the steps below:
  1. Add a Product block into the model
  2. Double click on the block
  3. Under 'Number of inputs' section replace the number '2' with the right-matrix division symbol ' / '
  4. Select 'Multiplication' as 'Matrix(*)'
This will return the matrix inverse.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Simulink 的更多信息

产品


版本

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by