Why there is a difference between the dct computed by the MATLAB dct function and one computed by dct matrix multiplication?
조회 수: 1 (최근 30일)
이전 댓글 표시
The result is different, though both methods give inverse transform correctly.
댓글 수: 0
채택된 답변
David Goodmanson
2018년 2월 26일
편집: David Goodmanson
2018년 2월 26일
Hi Mohsin,
x needs to be a column vector as you did, but you don't need to take the transpose of dctmtx:
x = 1:8
y1 = dct(x')
y2 = dctmtx(8)*x'
y1 - y2
x1 = idct(y1)
x2 = dctmtx(8)\y2
Same results, out and back.
추가 답변 (0개)
커뮤니티
더 많은 답변 보기: Power Electronics Community
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!