cppcolormap v1.4.5
|
#include <cfloat>
#include <iostream>
#include <math.h>
#include <sstream>
#include <string>
#include <vector>
#include <xtensor/xarray.hpp>
#include <xtensor/xmanipulation.hpp>
#include <xtensor/xmath.hpp>
#include <xtensor/xsort.hpp>
#include <xtensor/xtensor.hpp>
#include <xtensor/xview.hpp>
Go to the source code of this file.
Namespaces | |
namespace | cppcolormap::array_type |
Container type. | |
Macros | |
#define | CPPCOLORMAP_ASSERT(expr) |
All assertions are implementation as: | |
#define | CPPCOLORMAP_VERSION "@PROJECT_VERSION@" |
Current version. | |
Typedefs | |
template<typename T , size_t N> | |
using | cppcolormap::array_type::tensor = xt::xtensor< T, N > |
Fixed (static) rank array. | |
Enumerations | |
enum | cppcolormap::metric { cppcolormap::euclidean , cppcolormap::fast_perceptual , cppcolormap::perceptual } |
Algorithm to use for color matching. More... | |
Functions | |
std::string | cppcolormap::version () |
Return version string. | |
std::vector< std::string > | cppcolormap::version_dependencies () |
Return versions of this library and of all of its dependencies. | |
template<class T , typename std::enable_if_t< xt::get_rank< T >::value !=1, int > = 0> | |
std::vector< std::string > | cppcolormap::rgb2hex (const T &arg) |
Convert RGB -> HEX. | |
template<class T , typename std::enable_if_t< xt::get_rank< T >::value==1, int > = 0> | |
std::string | cppcolormap::rgb2hex (const T &arg) |
Convert RGB -> HEX. | |
array_type::tensor< double, 2 > | cppcolormap::hex2rgb (const std::vector< std::string > &arg) |
Convert HEX -> RGB. | |
array_type::tensor< double, 1 > | cppcolormap::hex2rgb (const std::string &arg) |
Convert HEX -> RGB. | |
template<class T , class R = array_type::tensor<double, 2>> | |
R | cppcolormap::interp (const T &arg, size_t N) |
Interpolate the individual colours. | |
template<class E , class C , typename S > | |
auto | cppcolormap::as_colors (const E &data, const C &colors, S vmin, S vmax) |
Convert data to colors using a colormap. | |
template<class E , class C > | |
auto | cppcolormap::as_colors (const E &data, const C &colors) |
Convert data to colors using a colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Accent (size_t N=8) |
Qualitative colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Dark2 (size_t N=8) |
Qualitative colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Paired (size_t N=12) |
Qualitative colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Spectral (size_t N=11) |
Qualitative colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Pastel1 (size_t N=9) |
Qualitative colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Pastel2 (size_t N=8) |
Qualitative colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Set1 (size_t N=9) |
Qualitative colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Set2 (size_t N=8) |
Qualitative colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Set3 (size_t N=12) |
Qualitative colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Blues (size_t N=9) |
Sequential colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Greens (size_t N=9) |
Sequential colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Greys (size_t N=2) |
Sequential colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Oranges (size_t N=9) |
Sequential colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Purples (size_t N=9) |
Sequential colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Reds (size_t N=9) |
Sequential colormap. | |
array_type::tensor< double, 2 > | cppcolormap::BuPu (size_t N=9) |
Sequential colormap. | |
array_type::tensor< double, 2 > | cppcolormap::GnBu (size_t N=9) |
Sequential colormap. | |
array_type::tensor< double, 2 > | cppcolormap::PuBu (size_t N=9) |
Sequential colormap. | |
array_type::tensor< double, 2 > | cppcolormap::PuBuGn (size_t N=9) |
Sequential colormap. | |
array_type::tensor< double, 2 > | cppcolormap::PuRd (size_t N=9) |
Sequential colormap. | |
array_type::tensor< double, 2 > | cppcolormap::RdPu (size_t N=9) |
Sequential colormap. | |
array_type::tensor< double, 2 > | cppcolormap::OrRd (size_t N=9) |
Sequential colormap. | |
array_type::tensor< double, 2 > | cppcolormap::RdOrYl (size_t N=9) |
Sequential colormap. | |
array_type::tensor< double, 2 > | cppcolormap::YlGn (size_t N=9) |
Sequential colormap. | |
array_type::tensor< double, 2 > | cppcolormap::YlGnBu (size_t N=9) |
Sequential colormap. | |
array_type::tensor< double, 2 > | cppcolormap::YlOrRd (size_t N=9) |
Sequential colormap. | |
array_type::tensor< double, 2 > | cppcolormap::BrBG (size_t N=11) |
Diverging colormap. | |
array_type::tensor< double, 2 > | cppcolormap::PuOr (size_t N=11) |
Diverging colormap. | |
array_type::tensor< double, 2 > | cppcolormap::RdBu (size_t N=11) |
Diverging colormap. | |
array_type::tensor< double, 2 > | cppcolormap::RdGy (size_t N=11) |
Diverging colormap. | |
array_type::tensor< double, 2 > | cppcolormap::RdYlBu (size_t N=11) |
Diverging colormap. | |
array_type::tensor< double, 2 > | cppcolormap::RdYlGn (size_t N=11) |
Diverging colormap. | |
array_type::tensor< double, 2 > | cppcolormap::PiYG (size_t N=11) |
Diverging colormap. | |
array_type::tensor< double, 2 > | cppcolormap::PRGn (size_t N=11) |
Diverging colormap. | |
array_type::tensor< double, 2 > | cppcolormap::spring (size_t N=256) |
matplotlib colormap, from anchor. | |
array_type::tensor< double, 2 > | cppcolormap::summer (size_t N=256) |
matplotlib colormap, from anchor. | |
array_type::tensor< double, 2 > | cppcolormap::autumn (size_t N=256) |
matplotlib colormap, from anchor. | |
array_type::tensor< double, 2 > | cppcolormap::winter (size_t N=256) |
matplotlib colormap, from anchor. | |
array_type::tensor< double, 2 > | cppcolormap::bone (size_t N=256) |
matplotlib colormap, from anchor. | |
array_type::tensor< double, 2 > | cppcolormap::cool (size_t N=256) |
matplotlib colormap, from anchor. | |
array_type::tensor< double, 2 > | cppcolormap::hot (size_t N=256) |
matplotlib colormap, from anchor. | |
array_type::tensor< double, 2 > | cppcolormap::copper (size_t N=256) |
matplotlib colormap, from anchor. | |
array_type::tensor< double, 2 > | cppcolormap::hsv (size_t N=256) |
matplotlib colormap, from anchor. | |
array_type::tensor< double, 2 > | cppcolormap::nipy_spectral (size_t N=256) |
matplotlib colormap, from anchor. | |
array_type::tensor< double, 2 > | cppcolormap::jet (size_t N=256) |
matplotlib colormap, from anchor. | |
array_type::tensor< double, 2 > | cppcolormap::terrain (size_t N=6) |
matplotlib colormap, from fraction. | |
array_type::tensor< double, 2 > | cppcolormap::afmhot (size_t N=256) |
GNU plot colormap. | |
array_type::tensor< double, 2 > | cppcolormap::magma (size_t N=256) |
matplotlib colormap. | |
array_type::tensor< double, 2 > | cppcolormap::inferno (size_t N=256) |
matplotlib colormap. | |
array_type::tensor< double, 2 > | cppcolormap::plasma (size_t N=256) |
matplotlib colormap. | |
array_type::tensor< double, 2 > | cppcolormap::viridis (size_t N=256) |
matplotlib colormap. | |
array_type::tensor< double, 2 > | cppcolormap::seismic (size_t N=5) |
matplotlib colormap. | |
array_type::tensor< double, 2 > | cppcolormap::White (size_t N=1) |
Monotone colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Grey (size_t N=1) |
Monotone colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Black (size_t N=1) |
Monotone colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Red (size_t N=1) |
Monotone colormap. | |
array_type::tensor< double, 2 > | cppcolormap::Blue (size_t N=1) |
Monotone colormap. | |
array_type::tensor< double, 2 > | cppcolormap::tuewarmred (size_t N=1) |
Eindhoven University of Technology. | |
array_type::tensor< double, 2 > | cppcolormap::tuedarkblue (size_t N=1) |
Eindhoven University of Technology. | |
array_type::tensor< double, 2 > | cppcolormap::tueblue (size_t N=1) |
Eindhoven University of Technology. | |
array_type::tensor< double, 2 > | cppcolormap::tuelightblue (size_t N=1) |
Eindhoven University of Technology. | |
array_type::tensor< double, 2 > | cppcolormap::Apricot (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Aquamarine (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Bittersweet (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::BlueGreen (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::BlueViolet (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::BrickRed (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Brown (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::BurntOrange (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::CadetBlue (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::CarnationPink (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Cerulean (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::CornflowerBlue (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Cyan (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Dandelion (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::DarkOrchid (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Emerald (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::ForestGreen (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Fuchsia (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Goldenrod (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Gray (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Green (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::GreenYellow (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::JungleGreen (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Lavender (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::LimeGreen (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Magenta (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Mahogany (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Maroon (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Melon (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::MidnightBlue (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Mulberry (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::NavyBlue (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::OliveGreen (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Orange (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::OrangeRed (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Orchid (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Peach (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Periwinkle (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::PineGreen (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Plum (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::ProcessBlue (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Purple (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::RawSienna (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::RedOrange (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::RedViolet (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Rhodamine (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::RoyalBlue (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::RoyalPurple (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::RubineRed (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Salmon (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::SeaGreen (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Sepia (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::SkyBlue (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::SpringGreen (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Tan (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::TealBlue (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Thistle (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Turquoise (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Violet (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::VioletRed (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::WildStrawberry (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Yellow (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::YellowGreen (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::YellowOrange (size_t N=1) |
dvips color. | |
array_type::tensor< double, 2 > | cppcolormap::Accent_r (size_t N=8) |
Inverse of cppcolormap::Accent. | |
array_type::tensor< double, 2 > | cppcolormap::Dark2_r (size_t N=8) |
Inverse of cppcolormap::Dark2. | |
array_type::tensor< double, 2 > | cppcolormap::Paired_r (size_t N=12) |
Inverse of cppcolormap::Paired. | |
array_type::tensor< double, 2 > | cppcolormap::Spectral_r (size_t N=11) |
Inverse of cppcolormap::Spectral. | |
array_type::tensor< double, 2 > | cppcolormap::Pastel1_r (size_t N=9) |
Inverse of cppcolormap::Pastel1. | |
array_type::tensor< double, 2 > | cppcolormap::Pastel2_r (size_t N=8) |
Inverse of cppcolormap::Pastel2. | |
array_type::tensor< double, 2 > | cppcolormap::Set1_r (size_t N=9) |
Inverse of cppcolormap::Set1. | |
array_type::tensor< double, 2 > | cppcolormap::Set2_r (size_t N=8) |
Inverse of cppcolormap::Set2. | |
array_type::tensor< double, 2 > | cppcolormap::Set3_r (size_t N=12) |
Inverse of cppcolormap::Set3. | |
array_type::tensor< double, 2 > | cppcolormap::Blues_r (size_t N=9) |
Inverse of cppcolormap::Blues. | |
array_type::tensor< double, 2 > | cppcolormap::Greens_r (size_t N=9) |
Inverse of cppcolormap::Greens. | |
array_type::tensor< double, 2 > | cppcolormap::Greys_r (size_t N=2) |
Inverse of cppcolormap::Greys. | |
array_type::tensor< double, 2 > | cppcolormap::Oranges_r (size_t N=9) |
Inverse of cppcolormap::Oranges. | |
array_type::tensor< double, 2 > | cppcolormap::Purples_r (size_t N=9) |
Inverse of cppcolormap::Purples. | |
array_type::tensor< double, 2 > | cppcolormap::Reds_r (size_t N=9) |
Inverse of cppcolormap::Reds. | |
array_type::tensor< double, 2 > | cppcolormap::BuPu_r (size_t N=9) |
Inverse of cppcolormap::BuPu. | |
array_type::tensor< double, 2 > | cppcolormap::GnBu_r (size_t N=9) |
Inverse of cppcolormap::GnBu. | |
array_type::tensor< double, 2 > | cppcolormap::PuBu_r (size_t N=9) |
Inverse of cppcolormap::PuBu. | |
array_type::tensor< double, 2 > | cppcolormap::PuBuGn_r (size_t N=9) |
Inverse of cppcolormap::PuBuGn. | |
array_type::tensor< double, 2 > | cppcolormap::PuRd_r (size_t N=9) |
Inverse of cppcolormap::PuRd. | |
array_type::tensor< double, 2 > | cppcolormap::RdPu_r (size_t N=9) |
Inverse of cppcolormap::RdPu. | |
array_type::tensor< double, 2 > | cppcolormap::OrRd_r (size_t N=9) |
Inverse of cppcolormap::OrRd. | |
array_type::tensor< double, 2 > | cppcolormap::RdOrYl_r (size_t N=9) |
Inverse of cppcolormap::RdOrYl. | |
array_type::tensor< double, 2 > | cppcolormap::YlGn_r (size_t N=9) |
Inverse of cppcolormap::YlGn. | |
array_type::tensor< double, 2 > | cppcolormap::YlGnBu_r (size_t N=9) |
Inverse of cppcolormap::YlGnBu. | |
array_type::tensor< double, 2 > | cppcolormap::YlOrRd_r (size_t N=9) |
Inverse of cppcolormap::YlOrRd. | |
array_type::tensor< double, 2 > | cppcolormap::BrBG_r (size_t N=11) |
Inverse of cppcolormap::BrBG. | |
array_type::tensor< double, 2 > | cppcolormap::PuOr_r (size_t N=11) |
Inverse of cppcolormap::PuOr. | |
array_type::tensor< double, 2 > | cppcolormap::RdBu_r (size_t N=11) |
Inverse of cppcolormap::RdBu. | |
array_type::tensor< double, 2 > | cppcolormap::RdGy_r (size_t N=11) |
Inverse of cppcolormap::RdGy. | |
array_type::tensor< double, 2 > | cppcolormap::RdYlBu_r (size_t N=11) |
Inverse of cppcolormap::RdYlBu. | |
array_type::tensor< double, 2 > | cppcolormap::RdYlGn_r (size_t N=11) |
Inverse of cppcolormap::RdYlGn. | |
array_type::tensor< double, 2 > | cppcolormap::PiYG_r (size_t N=11) |
Inverse of cppcolormap::PiYG. | |
array_type::tensor< double, 2 > | cppcolormap::PRGn_r (size_t N=11) |
Inverse of cppcolormap::PRGn. | |
array_type::tensor< double, 2 > | cppcolormap::spring_r (size_t N=256) |
Inverse of cppcolormap::spring. | |
array_type::tensor< double, 2 > | cppcolormap::summer_r (size_t N=256) |
Inverse of cppcolormap::summer. | |
array_type::tensor< double, 2 > | cppcolormap::autumn_r (size_t N=256) |
Inverse of cppcolormap::autumn. | |
array_type::tensor< double, 2 > | cppcolormap::winter_r (size_t N=256) |
Inverse of cppcolormap::winter. | |
array_type::tensor< double, 2 > | cppcolormap::bone_r (size_t N=256) |
Inverse of cppcolormap::bone. | |
array_type::tensor< double, 2 > | cppcolormap::cool_r (size_t N=256) |
Inverse of cppcolormap::cool. | |
array_type::tensor< double, 2 > | cppcolormap::hot_r (size_t N=256) |
Inverse of cppcolormap::hot. | |
array_type::tensor< double, 2 > | cppcolormap::copper_r (size_t N=256) |
Inverse of cppcolormap::copper. | |
array_type::tensor< double, 2 > | cppcolormap::hsv_r (size_t N=256) |
Inverse of cppcolormap::hsv. | |
array_type::tensor< double, 2 > | cppcolormap::nipy_spectral_r (size_t N=256) |
Inverse of cppcolormap::nipy_spectral. | |
array_type::tensor< double, 2 > | cppcolormap::jet_r (size_t N=256) |
Inverse of cppcolormap::jet. | |
array_type::tensor< double, 2 > | cppcolormap::terrain_r (size_t N=5) |
Inverse of cppcolormap::terrain. | |
array_type::tensor< double, 2 > | cppcolormap::seismic_r (size_t N=6) |
Inverse of cppcolormap::seismic. | |
array_type::tensor< double, 2 > | cppcolormap::afmhot_r (size_t N=256) |
Inverse of cppcolormap::afmhot. | |
array_type::tensor< double, 2 > | cppcolormap::magma_r (size_t N=256) |
Inverse of cppcolormap::magma. | |
array_type::tensor< double, 2 > | cppcolormap::inferno_r (size_t N=256) |
Inverse of cppcolormap::inferno. | |
array_type::tensor< double, 2 > | cppcolormap::plasma_r (size_t N=256) |
Inverse of cppcolormap::plasma. | |
array_type::tensor< double, 2 > | cppcolormap::viridis_r (size_t N=256) |
Inverse of cppcolormap::viridis. | |
array_type::tensor< double, 2 > | cppcolormap::colormap (const std::string &cmap, size_t N=256) |
Get colormap specified as string. | |
array_type::tensor< double, 2 > | cppcolormap::xterm () |
xterm color-cyle. | |
array_type::tensor< double, 2 > | cppcolormap::tue () |
Eindhoven University of Technology color-cyle. | |
array_type::tensor< double, 2 > | cppcolormap::xterm_r () |
Inverse of cppcolormap::xterm. | |
array_type::tensor< double, 2 > | cppcolormap::tue_r () |
Inverse of cppcolormap::tue. | |
array_type::tensor< double, 2 > | cppcolormap::colorcycle (const std::string &cmap) |
Get color-cycle specified as string. | |
array_type::tensor< size_t, 1 > | cppcolormap::match (const array_type::tensor< double, 2 > &A, const array_type::tensor< double, 2 > &B, metric distance_metric=euclidean) |
Match colors. | |
Definition in file cppcolormap.h.
#define CPPCOLORMAP_ASSERT | ( | expr | ) |
All assertions are implementation as:
GMATTENSOR_ASSERT(...)
They can be enabled by:
#define GMATTENSOR_ENABLE_ASSERT
(before including GMatTensor). The advantage is that:
std::runtime_error |
Definition at line 46 of file cppcolormap.h.
#define CPPCOLORMAP_VERSION "@PROJECT_VERSION@" |
Current version.
Either:
python -c "from setuptools_scm import get_version; print(get_version())"
MYVERSION=`python -c "from setuptools_scm import get_version; print(get_version())"` -DCPPCOLORMAP_VERSION="$MYVERSION"From the root of this project. This is what
setup.py
does.Note that both CMakeLists.txt
and setup.py
will construct the version using setuptools_scm
. Tip: use the environment variable SETUPTOOLS_SCM_PRETEND_VERSION
to overwrite the automatic version.
Definition at line 70 of file cppcolormap.h.
enum cppcolormap::metric |
Algorithm to use for color matching.
Enumerator | |
---|---|
euclidean | Euclidean norm. |
fast_perceptual | Fast best perception algorithm. |
perceptual | Best perception algorithm. See: https://en.wikipedia.org/wiki/Color_difference. |
Definition at line 5496 of file cppcolormap.h.
|
inline |
Qualitative colormap.
N | Number of colors to output. |
Definition at line 406 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::Accent.
N | Number of colors to output. |
Definition at line 4041 of file cppcolormap.h.
|
inline |
GNU plot colormap.
N | Number of colors to output. |
Definition at line 2039 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::afmhot.
N | Number of colors to output. |
Definition at line 4558 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3273 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3285 of file cppcolormap.h.
|
inline |
Convert data to colors using a colormap.
data | The data. |
colors | The colormap, e.g. cppcolormap::jet() . |
Definition at line 395 of file cppcolormap.h.
|
inline |
Convert data to colors using a colormap.
data | The data. |
colors | The colormap, e.g. cppcolormap::jet() . |
vmin | The lower limit of the color-axis. |
vmax | The upper limit of the color-axis. |
Definition at line 383 of file cppcolormap.h.
|
inline |
matplotlib colormap, from anchor.
N | Number of colors to output. |
Definition at line 1358 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::autumn.
N | Number of colors to output. |
Definition at line 4437 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3297 of file cppcolormap.h.
|
inline |
Monotone colormap.
N | Number of colors to output. |
Definition at line 3189 of file cppcolormap.h.
|
inline |
Monotone colormap.
N | Number of colors to output. |
Definition at line 3213 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3309 of file cppcolormap.h.
|
inline |
Sequential colormap.
N | Number of colors to output. |
Definition at line 635 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::Blues.
N | Number of colors to output. |
Definition at line 4140 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3321 of file cppcolormap.h.
|
inline |
matplotlib colormap, from anchor.
N | Number of colors to output. |
Definition at line 1408 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::bone.
N | Number of colors to output. |
Definition at line 4459 of file cppcolormap.h.
|
inline |
Diverging colormap.
N | Number of colors to output. |
Definition at line 1053 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::BrBG.
N | Number of colors to output. |
Definition at line 4327 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3333 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3345 of file cppcolormap.h.
|
inline |
Sequential colormap.
N | Number of colors to output. |
Definition at line 778 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::BuPu.
N | Number of colors to output. |
Definition at line 4206 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3357 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3369 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3381 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3393 of file cppcolormap.h.
|
inline |
Get color-cycle specified as string.
cmap | Name of the colormap. |
Definition at line 5472 of file cppcolormap.h.
|
inline |
Get colormap specified as string.
cmap | Name of the colormap. |
N | Number of colors to output. |
Definition at line 4614 of file cppcolormap.h.
|
inline |
matplotlib colormap, from anchor.
N | Number of colors to output. |
Definition at line 1437 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::cool.
N | Number of colors to output. |
Definition at line 4470 of file cppcolormap.h.
|
inline |
matplotlib colormap, from anchor.
N | Number of colors to output. |
Definition at line 1491 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::copper.
N | Number of colors to output. |
Definition at line 4492 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3405 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3417 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3429 of file cppcolormap.h.
|
inline |
Qualitative colormap.
N | Number of colors to output. |
Definition at line 430 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::Dark2.
N | Number of colors to output. |
Definition at line 4052 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3441 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3453 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3465 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3477 of file cppcolormap.h.
|
inline |
Sequential colormap.
N | Number of colors to output. |
Definition at line 803 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::GnBu.
N | Number of colors to output. |
Definition at line 4217 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3489 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3501 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3513 of file cppcolormap.h.
|
inline |
Sequential colormap.
N | Number of colors to output. |
Definition at line 660 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::Greens.
N | Number of colors to output. |
Definition at line 4151 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3525 of file cppcolormap.h.
|
inline |
Monotone colormap.
N | Number of colors to output. |
Definition at line 3177 of file cppcolormap.h.
|
inline |
Sequential colormap.
N | Number of colors to output. |
Definition at line 685 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::Greys.
N | Number of colors to output. |
Definition at line 4162 of file cppcolormap.h.
array_type::tensor< double, 1 > cppcolormap::hex2rgb | ( | const std::string & | arg | ) |
Convert HEX -> RGB.
arg | HEX data. |
Definition at line 281 of file cppcolormap.h.
array_type::tensor< double, 2 > cppcolormap::hex2rgb | ( | const std::vector< std::string > & | arg | ) |
Convert HEX -> RGB.
arg | HEX data. |
Definition at line 264 of file cppcolormap.h.
|
inline |
matplotlib colormap, from anchor.
N | Number of colors to output. |
Definition at line 1462 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::hot.
N | Number of colors to output. |
Definition at line 4481 of file cppcolormap.h.
|
inline |
matplotlib colormap, from anchor.
N | Number of colors to output. |
Definition at line 1517 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::hsv.
N | Number of colors to output. |
Definition at line 4503 of file cppcolormap.h.
|
inline |
matplotlib colormap.
N | Number of colors to output. |
Definition at line 2328 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::inferno.
N | Number of colors to output. |
Definition at line 4580 of file cppcolormap.h.
|
inline |
Interpolate the individual colours.
arg | RGB data. |
N | Number of colors to output. |
Definition at line 294 of file cppcolormap.h.
|
inline |
matplotlib colormap, from anchor.
N | Number of colors to output. |
Definition at line 1642 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::jet.
N | Number of colors to output. |
Definition at line 4525 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3537 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3549 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3561 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3573 of file cppcolormap.h.
|
inline |
matplotlib colormap.
N | Number of colors to output. |
Definition at line 2056 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::magma.
N | Number of colors to output. |
Definition at line 4569 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3585 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3597 of file cppcolormap.h.
|
inline |
Match colors.
A | List of colors. |
B | List of colors. |
distance_metric | Metric to use in color matching. |
A
, the index of the closets corresponding color in B
. Definition at line 5538 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3609 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3621 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3633 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3645 of file cppcolormap.h.
|
inline |
matplotlib colormap, from anchor.
N | Number of colors to output. |
Definition at line 1560 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::nipy_spectral.
N | Number of colors to output. |
Definition at line 4514 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3657 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3669 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3681 of file cppcolormap.h.
|
inline |
Sequential colormap.
N | Number of colors to output. |
Definition at line 703 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::Oranges.
N | Number of colors to output. |
Definition at line 4173 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3693 of file cppcolormap.h.
|
inline |
Sequential colormap.
N | Number of colors to output. |
Definition at line 928 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::OrRd.
N | Number of colors to output. |
Definition at line 4272 of file cppcolormap.h.
|
inline |
Qualitative colormap.
N | Number of colors to output. |
Definition at line 454 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::Paired.
N | Number of colors to output. |
Definition at line 4063 of file cppcolormap.h.
|
inline |
Qualitative colormap.
N | Number of colors to output. |
Definition at line 509 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::Pastel1.
N | Number of colors to output. |
Definition at line 4085 of file cppcolormap.h.
|
inline |
Qualitative colormap.
N | Number of colors to output. |
Definition at line 534 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::Pastel2.
N | Number of colors to output. |
Definition at line 4096 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3705 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3717 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3729 of file cppcolormap.h.
|
inline |
Diverging colormap.
N | Number of colors to output. |
Definition at line 1215 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::PiYG.
N | Number of colors to output. |
Definition at line 4393 of file cppcolormap.h.
|
inline |
matplotlib colormap.
N | Number of colors to output. |
Definition at line 2600 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::plasma.
N | Number of colors to output. |
Definition at line 4591 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3741 of file cppcolormap.h.
|
inline |
Diverging colormap.
N | Number of colors to output. |
Definition at line 1242 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::PRGn.
N | Number of colors to output. |
Definition at line 4404 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3753 of file cppcolormap.h.
|
inline |
Sequential colormap.
N | Number of colors to output. |
Definition at line 828 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::PuBu.
N | Number of colors to output. |
Definition at line 4228 of file cppcolormap.h.
|
inline |
Sequential colormap.
N | Number of colors to output. |
Definition at line 853 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::PuBuGn.
N | Number of colors to output. |
Definition at line 4239 of file cppcolormap.h.
|
inline |
Diverging colormap.
N | Number of colors to output. |
Definition at line 1080 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::PuOr.
N | Number of colors to output. |
Definition at line 4338 of file cppcolormap.h.
|
inline |
Sequential colormap.
N | Number of colors to output. |
Definition at line 878 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::PuRd.
N | Number of colors to output. |
Definition at line 4250 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3765 of file cppcolormap.h.
|
inline |
Sequential colormap.
N | Number of colors to output. |
Definition at line 728 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::Purples.
N | Number of colors to output. |
Definition at line 4184 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3777 of file cppcolormap.h.
|
inline |
Diverging colormap.
N | Number of colors to output. |
Definition at line 1107 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::RdBu.
N | Number of colors to output. |
Definition at line 4349 of file cppcolormap.h.
|
inline |
Diverging colormap.
N | Number of colors to output. |
Definition at line 1134 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::RdGy.
N | Number of colors to output. |
Definition at line 4360 of file cppcolormap.h.
|
inline |
Sequential colormap.
N | Number of colors to output. |
Definition at line 953 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::RdOrYl.
N | Number of colors to output. |
Definition at line 4283 of file cppcolormap.h.
|
inline |
Sequential colormap.
N | Number of colors to output. |
Definition at line 903 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::RdPu.
N | Number of colors to output. |
Definition at line 4261 of file cppcolormap.h.
|
inline |
Diverging colormap.
N | Number of colors to output. |
Definition at line 1161 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::RdYlBu.
N | Number of colors to output. |
Definition at line 4371 of file cppcolormap.h.
|
inline |
Diverging colormap.
N | Number of colors to output. |
Definition at line 1188 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::RdYlGn.
N | Number of colors to output. |
Definition at line 4382 of file cppcolormap.h.
|
inline |
Monotone colormap.
N | Number of colors to output. |
Definition at line 3201 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3789 of file cppcolormap.h.
|
inline |
Sequential colormap.
N | Number of colors to output. |
Definition at line 753 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::Reds.
N | Number of colors to output. |
Definition at line 4195 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3801 of file cppcolormap.h.
std::vector< std::string > cppcolormap::rgb2hex | ( | const T & | arg | ) |
Convert RGB -> HEX.
arg | RGB data (values between 0 and 1). |
Definition at line 220 of file cppcolormap.h.
std::string cppcolormap::rgb2hex | ( | const T & | arg | ) |
Convert RGB -> HEX.
arg | RGB data (values between 0 and 1). |
Definition at line 246 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3813 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3825 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3837 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3849 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3861 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3873 of file cppcolormap.h.
|
inline |
matplotlib colormap.
N | Number of colors to output. |
Definition at line 3144 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::seismic.
N | Number of colors to output. |
Definition at line 4547 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3885 of file cppcolormap.h.
|
inline |
Qualitative colormap.
N | Number of colors to output. |
Definition at line 558 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::Set1.
N | Number of colors to output. |
Definition at line 4107 of file cppcolormap.h.
|
inline |
Qualitative colormap.
N | Number of colors to output. |
Definition at line 583 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::Set2.
N | Number of colors to output. |
Definition at line 4118 of file cppcolormap.h.
|
inline |
Qualitative colormap.
N | Number of colors to output. |
Definition at line 607 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::Set3.
N | Number of colors to output. |
Definition at line 4129 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3897 of file cppcolormap.h.
|
inline |
Qualitative colormap.
N | Number of colors to output. |
Definition at line 482 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::Spectral.
N | Number of colors to output. |
Definition at line 4074 of file cppcolormap.h.
|
inline |
matplotlib colormap, from anchor.
N | Number of colors to output. |
Definition at line 1308 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::spring.
N | Number of colors to output. |
Definition at line 4415 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3909 of file cppcolormap.h.
|
inline |
matplotlib colormap, from anchor.
N | Number of colors to output. |
Definition at line 1333 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::summer.
N | Number of colors to output. |
Definition at line 4426 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3921 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3933 of file cppcolormap.h.
|
inline |
matplotlib colormap, from fraction.
N | Number of colors to output. |
Definition at line 1701 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::terrain.
N | Number of colors to output. |
Definition at line 4536 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3945 of file cppcolormap.h.
|
inline |
Eindhoven University of Technology color-cyle.
Definition at line 5425 of file cppcolormap.h.
|
inline |
|
inline |
Eindhoven University of Technology.
N | Number of colors to output. |
Definition at line 3249 of file cppcolormap.h.
|
inline |
Eindhoven University of Technology.
N | Number of colors to output. |
Definition at line 3237 of file cppcolormap.h.
|
inline |
Eindhoven University of Technology.
N | Number of colors to output. |
Definition at line 3261 of file cppcolormap.h.
|
inline |
Eindhoven University of Technology.
N | Number of colors to output. |
Definition at line 3225 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3957 of file cppcolormap.h.
|
inline |
|
inline |
Return versions of this library and of all of its dependencies.
The output is a list of strings, e.g.
"cppcolormap=1.0.0", "xtensor=0.20.1" ...
Definition at line 152 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3969 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3981 of file cppcolormap.h.
|
inline |
matplotlib colormap.
N | Number of colors to output. |
Definition at line 2872 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::viridis.
N | Number of colors to output. |
Definition at line 4602 of file cppcolormap.h.
|
inline |
Monotone colormap.
N | Number of colors to output. |
Definition at line 3165 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 3993 of file cppcolormap.h.
|
inline |
matplotlib colormap, from anchor.
N | Number of colors to output. |
Definition at line 1383 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::winter.
N | Number of colors to output. |
Definition at line 4448 of file cppcolormap.h.
|
inline |
|
inline |
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 4005 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 4017 of file cppcolormap.h.
|
inline |
dvips color.
See: https://en.wikibooks.org/wiki/LaTeX/Colors
N | Number of colors to output. |
Definition at line 4029 of file cppcolormap.h.
|
inline |
Sequential colormap.
N | Number of colors to output. |
Definition at line 978 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::YlGn.
N | Number of colors to output. |
Definition at line 4294 of file cppcolormap.h.
|
inline |
Sequential colormap.
N | Number of colors to output. |
Definition at line 1003 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::YlGnBu.
N | Number of colors to output. |
Definition at line 4305 of file cppcolormap.h.
|
inline |
Sequential colormap.
N | Number of colors to output. |
Definition at line 1028 of file cppcolormap.h.
|
inline |
Inverse of cppcolormap::YlOrRd.
N | Number of colors to output. |
Definition at line 4316 of file cppcolormap.h.