def plot(self, opt_dict): """ Plot protocol. opt_dict can contain: *:param RI: 'R', 'I', 'RI' [ default] *:param x_window: (xmin,xmax) or None [default] *:param name: a string [default = '']. If not '', it remplaces the name of the function just for this plot. """ return _gf_plot.plot_base( self, opt_dict, r'$l_n$', lambda name : r'%s$(l_n)$'%name, False, list(self.mesh) )
def plot(self, opt_dict): """ Plot protocol. opt_dict can contain: *:param RIS: 'R', 'I', 'S', 'RI' [ default] *:param x_window: (xmin,xmax) or None [default] *:param name: a string [default = '']. If not '', it remplaces the name of the function just for this plot. """ return _gf_plot.plot_base( self, opt_dict, r'$\omega_n$', lambda name : r'%s$(i\omega_n)$'%name, True, [x.imag for x in self.mesh] )
def plot(self, opt_dict): r""" Plot protocol for GfLegendre objects. Parameters ---------- opt_dict: dictionary Can contain: - mode: string, default None Mode to plot the Green's function in: -- 'R': real part only -- 'I': imaginary part only - x_window: tuple, default None (xmin,xmax) - name: string, default = '' If not '', it remplaces the name of the function just for this plot. """ return _gf_plot.plot_base( self, opt_dict, r'$l_n$', lambda name : r'%s$(l_n)$'%name, list(self.mesh) )