what is command to find adjoint of matrix
조회 수: 66 (최근 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!

