@@ -28,8 +28,8 @@ persistently and selectively revert many of these changes.
2828
2929
3030
31- Colors, color cycles, and color maps
32- ====================================
31+ Colors, color cycles, and colormaps
32+ ===================================
3333
3434Colors in default property cycle
3535--------------------------------
@@ -117,7 +117,7 @@ in your :file:`matplotlibrc` file.
117117Colormap
118118--------
119119
120- The new default color map used by `matplotlib.cm.ScalarMappable ` instances is
120+ The new default colormap used by `matplotlib.cm.ScalarMappable ` instances is
121121'viridis' (aka `option D <https://bids.github.io/colormap/ >`__).
122122
123123.. plot ::
@@ -144,7 +144,7 @@ For an introduction to color theory and how 'viridis' was generated
144144watch Nathaniel Smith and Stéfan van der Walt's talk from SciPy2015.
145145See `here for many more details <https://bids.github.io/colormap/ >`__
146146about the other alternatives and the tools used to create the color
147- map. For details on all of the color maps available in matplotlib see
147+ map. For details on all of the colormaps available in matplotlib see
148148:doc: `/tutorials/colors/colormaps `.
149149
150150.. raw :: html
@@ -846,7 +846,7 @@ Interpolation
846846
847847The default interpolation method for `~matplotlib.axes.Axes.imshow ` is
848848now ``'nearest' `` and by default it resamples the data (both up and down
849- sampling) before color mapping .
849+ sampling) before colormapping .
850850
851851
852852.. plot ::
@@ -888,16 +888,16 @@ in your :file:`matplotlibrc` file.
888888Colormapping pipeline
889889---------------------
890890
891- Previously, the input data was normalized, then color mapped , and then
891+ Previously, the input data was normalized, then colormapped , and then
892892resampled to the resolution required for the screen. This meant that
893893the final resampling was being done in color space. Because the color
894- maps are not generally linear in RGB space, colors not in the color map
894+ maps are not generally linear in RGB space, colors not in the colormap
895895may appear in the final image. This bug was addressed by an almost
896896complete overhaul of the image handling code.
897897
898898The input data is now normalized, then resampled to the correct
899- resolution (in normalized dataspace), and then color mapped to
900- RGB space. This ensures that only colors from the color map appear
899+ resolution (in normalized dataspace), and then colormapped to
900+ RGB space. This ensures that only colors from the colormap appear
901901in the final image. (If your viewer subsequently resamples the image,
902902the artifact may reappear.)
903903
0 commit comments