Mathematica 颜色函数缩放

发布于 2024-12-10 09:03:09 字数 369 浏览 1 评论 0原文

我在 Mathematica 中有一个罐内温度的 ListDensityPlot。我随着时间的推移对其发展进行动画处理,但 ColorFunction 始终将当前步骤的最高温度设置为与红色相对应。我希望我的最高温度整体对应于红色,我该怎么做(我假设它与ColorFunctionScaling有关)?

这是我的代码

Animate[ListDensityPlot[Dev[[m, All, All]], 
  ColorFunction -> (ColorData["TemperatureMap"])], {m, 1, t, 1}, 
 AnimationRunning -> False]

I have a ListDensityPlot of a temperature in a can in Mathematica. I am animating its development over time, but the ColorFunction always sets the highest temperature of the current step to correspond to Red. I want my max temperature overall to correspond to red, how do I do that (I assume it's got something to do with ColorFunctionScaling)?

Here's my code

Animate[ListDensityPlot[Dev[[m, All, All]], 
  ColorFunction -> (ColorData["TemperatureMap"])], {m, 1, t, 1}, 
 AnimationRunning -> False]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

与他有关 2024-12-17 09:03:09

设置 ColorFunctionScaling -> False 并手动缩放颜色函数,使用类似于

ColorFunction -> (ColorData["TemperatureMap"][Rescale[#, {min, max}, {0,1}]&)

其中 minmax 是总体最小值和最大值(可能是 Through[{Min,Max }[开发]]。)

Set ColorFunctionScaling -> False and manually scale the color function, using something like

ColorFunction -> (ColorData["TemperatureMap"][Rescale[#, {min, max}, {0,1}]&)

where min and max are the overall minimum and maximum (probably Through[{Min,Max}[Dev]].)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文