what is command to find adjoint of matrix
61 次查看(过去 30 天)
显示 更早的评论
how to find out adjoint of matrix in matlab? what is the command or syntax? please Help Me and answer soon
回答(4 个)
Javed Akhtar
2018-12-12
编辑:Javed Akhtar
2018-12-12
Use det(A)*inv(A).
adjoint(A) takes symbolic arguments and not real numbers.
1 个评论
Carlos IV Hortinela
2021-7-20
this is obviously wrong.
Inv matrix A = (1/ Det A)*Adj (transpose A)
hence if you use this formula:
Use det(A)*inv(A).
it will yield Adj (Transpose A)
Stalin Samuel
2015-1-10
det(A)*inv(A)
2 个评论
Walter Roberson
2024-11-26
编辑:Walter Roberson
2024-11-26
A=[
12 24 34 44
11 21 31 41
13 23 43 53
16 26 35 46]
adjoint(sym(A)), disp(char(ans))
A B
2016-3-4
I have the same problem to you, I d'ont know how to calculate adjoint of haar wavelet transform,
1 个评论
Anjan Sahu
2019-1-11
You can try matlab online the code would work or try re installing the complete version
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Discrete Multiresolution Analysis 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

