MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / set_array

Method set_array

lib/matplotlib/image.py:713–723  ·  view source on GitHub ↗

Retained for backwards compatibility - use set_data instead. Parameters ---------- A : array-like

(self, A)

Source from the content-addressed store, hash-verified

711 self.stale = True
712
713 def set_array(self, A):
714 """
715 Retained for backwards compatibility - use set_data instead.
716
717 Parameters
718 ----------
719 A : array-like
720 """
721 # This also needs to be here to override the inherited
722 # cm.ScalarMappable.set_array method so it is not invoked by mistake.
723 self.set_data(A)
724
725 def get_interpolation(self):
726 """

Callers 15

plot_surfaceMethod · 0.45
plot_trisurfMethod · 0.45
figimageMethod · 0.45
streamplotFunction · 0.45
changedMethod · 0.45
_process_colorsMethod · 0.45
set_UVCMethod · 0.45
set_UVCMethod · 0.45
scatterMethod · 0.45
hexbinMethod · 0.45

Calls 1

set_dataMethod · 0.95