gpt4 book ai didi

c# - 如何使用 Oxyplot 创建和绘制 ContourSeries?

转载 作者:太空狗 更新时间:2023-10-29 19:43:53 28 4
gpt4 key购买 nike

我有一个 WPF 应用程序,我需要在其中可视化 y = y(x1, x2),其中 x1、x2 是线性坐标。我可以使用 Oxyplot 中的 HeatMapSeries 来做到这一点,但是当我想在同一窗口中绘制两组数据时,热图不是合适的工具。几个轮廓系列会更好。现在,我尝试以与 HeatMapSeries 相同的方式实现这一点,效果非常好:

public void PlotHeatMap (){

OxyPlot.PlotModel model = new PlotModel { Title = "2-D data" };
model.Axes.Add( new OxyPlot.Axes.LinearColorAxis {
Position = OxyPlot.Axes.AxisPosition.Right,
Palette = OxyPalettes.Jet( 500 ),
HighColor = OxyColors.Gray,
LowColor = OxyColors.Black } );

OxyPlot.Series.HeatMapSeries heatmap = new OxyPlot.Series.HeatMapSeries {
Data = ( Double[ , ] )data,
X0 = x1min,
X1 = x1max,
Y0 = x2min,
Y1 = x2max
};

model.Series.Add( heatmap );
}

Output from the HeatMapSeries

现在,当我尝试改用 ContourSeries 时,我只是将 HeatMapSeries 替换为 ContourSeries:

public void PlotContour (){

OxyPlot.PlotModel model = new PlotModel { Title = "2-D data" };
model.Axes.Add( new OxyPlot.Axes.LinearColorAxis {
Position = OxyPlot.Axes.AxisPosition.Right,
Palette = OxyPalettes.Jet( 500 ),
HighColor = OxyColors.Gray,
LowColor = OxyColors.Black } );

OxyPlot.Series.ContourSeries contour = new OxyPlot.Series.ContourSeries {
ColumnCoordinates = arrayFromMinToMax1,
RowCoordinates = arrayFromMinToMax2,
ContourLevels = arrayOfLevels,
ContourColors = arrayOfColors, // Same # elements as the levels' array
Data = ( Double[ , ] )data
};

model.Series.Add( contour );
}

这只会产生输出:

Output from the ContourSeries attempt

x 轴和 y 轴在那里,并且与最小和最大坐标匹配,但我看不到等高线。我怀疑设置 Axis 时缺少某些东西(它应该与 HeatMapSeries 相同吗??)。我不知道如何处理这个等高线图。除了例如,还有其他例子吗? GitHub 上的 ContourSeriesExamples?

感谢您的帮助!

最佳答案

我终于找到问题所在了——是我的错!ColumnCoordinatesRowCoordinates 数组必须与 DoubleArray Data 的大小相匹配!我不确定他们是。现在轮廓和热图对齐了!感谢 Anders 的支持并插入我编写自己的代码!

HeatMap with Contour

关于c# - 如何使用 Oxyplot 创建和绘制 ContourSeries?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30305223/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com