Inverse cmd giving errors
显示 更早的评论
I have getting an error message whenever I tried to use the Inverse command.
>> P=inverse(P) Undefined function 'inverse' for input arguments of type 'double'.
回答(2 个)
Salaheddin Hosseinzadeh
2014-8-27
Hi Segun,
So what you want to do is, finding the inverse matrix! Alright.
define your matrix as such
x =[2,3,5;4,1,6;1,4,0]
then use inv to find its inverse
Xinverse = inv(x)
Good Luck!
stalin
2014-8-27
0 个投票
try this P=P' or fliplr(P)or fliplr(P')
类别
在 帮助中心 和 File Exchange 中查找有关 Mathematics 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!