... <看更多>
「matlab hermitian transpose」的推薦目錄:
- 關於matlab hermitian transpose 在 兩種不同的矩陣轉置- 看板MATLAB - 批踢踢實業坊 的評價
- 關於matlab hermitian transpose 在 Why is complex conjugate transpose the default in Matlab 的評價
- 關於matlab hermitian transpose 在 How to Transpose a Matrix in MATLAB 2020 - YouTube 的評價
- 關於matlab hermitian transpose 在 Common mistakes and errors - MATLAB - DevTut 的評價
- 關於matlab hermitian transpose 在 How to get the conjugate symmetry of the complex matrix ... 的評價
- 關於matlab hermitian transpose 在 轉置運算子 - 他山教程 的評價
matlab hermitian transpose 在 Common mistakes and errors - MATLAB - DevTut 的推薦與評價
is the correct way to take the complex conjugate transpose (a.k.a. Hermitian conjugate) of a vector or matrix in MATLAB. Note that for the transpose . ... <看更多>
matlab hermitian transpose 在 How to get the conjugate symmetry of the complex matrix ... 的推薦與評價
\begingroup Look at the transpose operator [link][mathworks.com/help/matlab/ref/ctranspose.html] \endgroup. – porten. Jun 7 '14 at 17:29. ... <看更多>
相關內容
matlab hermitian transpose 在 轉置運算子 - 他山教程 的推薦與評價
是在MATLAB 中採用向量或矩陣的複共軛轉置(也稱Hermitian 共軛) 的正確方法。 請注意,對於轉置 .' ,撇號前面有一段時間。這與MATLAB 中其他逐元素 ... ... <看更多>
matlab hermitian transpose 在 兩種不同的矩陣轉置- 看板MATLAB - 批踢踢實業坊 的推薦與評價
日前有在板上提到矩陣轉置的問題
得知除了'以外
還有transpose可以使用,使用上可以避開一些麻煩的地方
不過前陣子老師上課時有提到複數的問題
有說到是如果用matlab來計算題目時
使用轉置必須格外注意
因為matlab的轉置會有問題
除了轉置以外還會順便幫你全部取共軛
像是1+5i 2-3i轉置後
3+4i 5-9i
會變成1-5i 3-4i這樣
2+3i 5+9i
因此必須要再包一個conj才會變成我們要的轉置矩陣
後來我在寫作業的時候就格外注意這個地方,提醒自己外面要再包一個conj
但是之後與同學對答案卻發現兩人跑出來完全不同的兩種答案
仔細查程式碼才發現我們兩個的差異是在哪裡
我打的是conj(transpose(A))
同學打的卻是conj(A')
此時對於這兩種轉置於法產生了疑問
於是使用hel後p得知了'與transpose是兩種不同的指令
.' Transpose.
X.' is the non-conjugate transpose.
B = TRANSPOSE(A) is called for the syntax A.' when A is an object.
也就是說
'是未經過conj的transpose
而transpose則是已經把conj計算進去了
換種方式寫就是:
conj(A') = transpose(A)
希望有在進行複數矩陣運算的版友多加留意
--
Deserves death! I daresay he does. Many that live deserve death. And some die
that deserve life. Can you give that to them? Then be not too eager to deal out
death in the name of justice, fearing for your own safty. Even the wise cannot
see all ends.
Gandalf to Frodo
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 220.131.231.83
... <看更多>