答案1
您可以使用point meta
带有自定义表达式的选项来计算曲线的颜色:
\documentclass[tikz]{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[]
\addplot[mesh,thick,point meta=37-x^2-10*sin(deg(x)),colormap/redyellow] {10*sin(deg(x))};
\addplot[thick] {-x^2+37};
\end{axis}
\end{tikzpicture}
\end{document}
可以使用选项来改变颜色colormap
。