Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Matrix Multipication by equation ?
1 回表示 (過去 30 日間)
古いコメントを表示
I have Dicom matrix 512 by 512 callde "HU". actually its CT HU value matrix. Now I want to multiply each element by this equation
New= 405+ 0.023HU - 0.0041HU^2 (in here square of HU element value).
1 件のコメント
Sal
2015 年 12 月 30 日
Not sure what you are asking here. Do you want to transform each element of the HU matrix according to that equation? If yes, try this: New = 405 + 0.023 * HU - 0.0041 * HU.^2 (mind the dot here)
回答 (0 件)
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!