2

私は、contour() を使用して生成されたプロットの x 軸と y 軸の値を設定しようとしていますが、現在、軸から特定の値を読み取ることができません。

fid_list = []
for fidN in arange(frames):
    offset = fidN * fid_pts 
    current_fid = cmplx_data[offset:offset+fid_pts]
    fid_list.append(current_fid)

fid_mat = fid_list
jres_spec = abs(fftshift(fft2(fid_mat)))
max_val = jres_spec.max()/15
min_val = max_val*0.15
steps = 40
figure()
CS=contour(jres_spec,arange(min_val,max_val,(max_val-min_val)/steps))
show()

このようなプロットを生成する

ここに画像の説明を入力 以前は xticks と yticks を使用して軸の値を設定していましたが、プロット上の正確な位置が重要になったため、軸から値を読み取ることができると非常に役立ちますが、これは x ではできません。 /yticks.

1D スペクトルをプロットするとき、次の式を使用して x 軸を読み取れるようにします。

bins = arange(828, -196, -1) #change this so that 0 value occurs at value it's meant to
x = (2000 * bins / 1024.0)/128.0
plot(x, fftshift(fft(fid_list[0])))
plt.gca().invert_xaxis()
show()

同様に、これを 2D 等高線プロットの y 軸に使用します

ybins = arange(15, -15, -1)
y = ybins * ((1/(15*10^(-3)))/ 30.0)

しかし、これをコードに統合するのに問題があります...

私はこのようなものを使ってみました

ybins = arange(15, -15, -1)
y = ybins * ((1/(15*10^(-3)))/ 30.0)
xbins = arange(828, -196, -1) 
x = (2000 * xbins / 1024.0)/128.0

fid_mat = fid_list
jres_spec = abs(fftshift(fft2(fid_mat)))
max_val = jres_spec.max()/15
min_val = max_val*0.15
steps = 40
figure()
CS=contour((x, y, jres_spec),arange(min_val,max_val,(max_val-min_val)/steps))
show()

戻った

---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
/home/dominicc/<ipython-input-34-28b34c6c069d> in <module>()
      7 bins = arange(828, -196, -1) #change this so that 0 value occurs at value it's meant to
      8 x = (2000 * bins / 1024.0)/128.0
----> 9 CS=contour((x_list, jres_spec),arange(min_val,max_val,(max_val-min_val)/steps))
     10 show()

/usr/lib/pymodules/python2.7/matplotlib/pyplot.pyc in contour(*args, **kwargs)
   2195         ax.hold(hold)
   2196     try:
-> 2197         ret = ax.contour(*args, **kwargs)
   2198         draw_if_interactive()
   2199     finally:

/usr/lib/pymodules/python2.7/matplotlib/axes.pyc in contour(self, *args, **kwargs)
   7379         if not self._hold: self.cla()
   7380         kwargs['filled'] = False
-> 7381         return mcontour.QuadContourSet(self, *args, **kwargs)
   7382     contour.__doc__ = mcontour.QuadContourSet.contour_doc
   7383 

/usr/lib/pymodules/python2.7/matplotlib/contour.pyc in __init__(self, ax, *args, **kwargs)
   1110         are described in QuadContourSet.contour_doc.
   1111         """
-> 1112         ContourSet.__init__(self, ax, *args, **kwargs)
   1113 
   1114     def _process_args(self, *args, **kwargs):

/usr/lib/pymodules/python2.7/matplotlib/contour.pyc in __init__(self, ax, *args, **kwargs)
    701         if self.origin == 'image': self.origin = mpl.rcParams['image.origin']
    702 
--> 703         self._process_args(*args, **kwargs)
    704         self._process_levels()
    705 

/usr/lib/pymodules/python2.7/matplotlib/contour.pyc in _process_args(self, *args, **kwargs)
   1123             self.zmax = args[0].zmax
   1124         else:
-> 1125             x, y, z = self._contour_args(args, kwargs)
   1126 
   1127             x0 = ma.minimum(x)

/usr/lib/pymodules/python2.7/matplotlib/contour.pyc in _contour_args(self, args, kwargs)
   1167         if Nargs <= 2:
   1168             z = ma.asarray(args[0], dtype=np.float64)
-> 1169             x, y = self._initialize_x_y(z)
   1170             args = args[1:]
   1171         elif Nargs <=4:

/usr/lib/pymodules/python2.7/matplotlib/contour.pyc in _initialize_x_y(self, z)
   1230         '''
   1231         if z.ndim != 2:
-> 1232             raise TypeError("Input must be a 2D array.")
   1233         else:
   1234             Ny, Nx = z.shape

TypeError: Input must be a 2D array.

そして、私は今、これを行うことができる他の方法を考えるのに苦労しています.

アイデア/提案はありますか?

4

1 に答える 1