Retained for backwards compatibility - use set_data instead. Parameters ---------- A : array-like
(self, A)
| 667 | self.stale = True |
| 668 | |
| 669 | def set_array(self, A): |
| 670 | """ |
| 671 | Retained for backwards compatibility - use set_data instead. |
| 672 | |
| 673 | Parameters |
| 674 | ---------- |
| 675 | A : array-like |
| 676 | """ |
| 677 | # This also needs to be here to override the inherited |
| 678 | # cm.ScalarMappable.set_array method so it is not invoked by mistake. |
| 679 | |
| 680 | self.set_data(A) |
| 681 | |
| 682 | def get_interpolation(self): |
| 683 | """ |