看matlab的代碼可以成9個像,分別是dx,dy,dz;hx,hy,hz;ix,iy,iz,如下圖,
問題是他們到底什么關系?x,y,z是指三個剖面嗎,那d,h,i什么意思?
模型如下:

成的9個影像:

我看了gprmax.m程式(節選):
```
ey=reshape(F(2:9:end),TotalOuts,Model(1).iterations,Model(1).NSteps);
ez=reshape(F(3:9:end),TotalOuts,Model(1).iterations,Model(1).NSteps);
hx=reshape(F(4:9:end),TotalOuts,Model(1).iterations,Model(1).NSteps);
hy=reshape(F(5:9:end),TotalOuts,Model(1).iterations,Model(1).NSteps);
hz=reshape(F(6:9:end),TotalOuts,Model(1).iterations,Model(1).NSteps);
ix=reshape(F(7:9:end),TotalOuts,Model(1).iterations,Model(1).NSteps);
iy=reshape(F(8:9:end),TotalOuts,Model(1).iterations,Model(1).NSteps);
iz=reshape(F(9:9:end),TotalOuts,Model(1).iterations,Model(1).NSteps);
```
我個人感覺跟軟體生成的二進制檔案有關,得搞明白軟體是如何生成這9類資料的。希望有人能指點一下。
轉載請註明出處,本文鏈接:https://www.uj5u.com/qita/62209.html
標籤:其他
上一篇:一個困擾了我很久的裝箱問題
下一篇:matlab程式設計
