- 博客(9)
- 收藏
- 关注
原创 利用Math.net进行奇异值分解SVD
奇异值分解的基本原理大家可以参考其他博客,这里仅记录利用Math.net库计算奇异值。基本原理可以参考这篇博客:奇异值分解法原理利用奇异值求解线性方程组原理:利用SVD求解线性方程组Math.net是一个非常强大的数学算法库,里面有很多数学算法。可以直接在nuget程序包管理里面添加到程序中using MathNet.Numerics.LinearAlgebra;using MathNet.Numerics.LinearAlgebra.Double;var mb = Matrix.
2022-03-15 11:26:50
1169
原创 C#ColorDialog颜色对话框控件
添加控件之后,打开会弹出系统颜色框。ColorDialog colorDialog = new ColorDialog(); if(colorDialog.ShowDialog() == DialogResult.OK){ button3.BackColor = colorDialog.Color;}
2022-01-13 11:09:25
833
原创 C#oxyplot库使用介绍(不定期更新)
使用oxyplot绘图之后没有自动添加图例,查看oxyplot源代码之后,搞清楚了如何添加图例。plotView_plotCurve.Model = new PlotModel ();//添加绘图模块Legend legend = new Legend();//实例图例对象plotView_plotCurve.Model.Legends.Add(legend);//将图例对象添加到绘图模块中LineSeries lineSeries = new LineSeries() { Title=Nam
2022-01-12 21:52:14
6298
原创 C#oxyPlot用法记录
窗口应用程序添加OxyPlot的Nuget包。添加PlotView控件“plotView_PlotCurve”plotView_PlotCurve.Model = new PlotModel();//实例化绘图模块plotView_PlotCurve.Model.Title = "曲线名称";//图名plotView_PlotCurve.Model.TitleColor = OxyColors.Automatic;//标题字体颜色OxyPlot.Axes.Axis xa = new OxyP
2022-01-10 20:20:54
4017
原创 Visual Studio 2022加载.Net Windows窗体designer一直加载不出来
You can continue working while the designer is loading in the background
2022-01-08 19:25:47
8524
原创 Visual Studio Installer下载,网络连接失败如何解决
解决Visual Studio Installer下载,网络连接失败的常规手段之一
2022-01-07 22:17:47
6872
7
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人