作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个 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 );
}
现在,当我尝试改用 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 );
}
这只会产生输出:
x 轴和 y 轴在那里,并且与最小和最大坐标匹配,但我看不到等高线。我怀疑设置 Axis 时缺少某些东西(它应该与 HeatMapSeries 相同吗??)。我不知道如何处理这个等高线图。除了例如,还有其他例子吗? GitHub 上的 ContourSeriesExamples?
感谢您的帮助!
最佳答案
我终于找到问题所在了——是我的错!ColumnCoordinates
和 RowCoordinates
数组必须与 DoubleArray Data
的大小相匹配!我不确定他们是。现在轮廓和热图对齐了!感谢 Anders 的支持并插入我编写自己的代码!
关于c# - 如何使用 Oxyplot 创建和绘制 ContourSeries?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30305223/
我有一个 WPF 应用程序,我需要在其中可视化 y = y(x1, x2),其中 x1、x2 是线性坐标。我可以使用 Oxyplot 中的 HeatMapSeries 来做到这一点,但是当我想在同一窗
我是一名优秀的程序员,十分优秀!