[csharp] view plain copy
1. using System;
2. using System.Collections.Generic;
3. using System.ComponentModel;
4. using System.Data;
5. using System.Drawing;
6. using System.Text;
7. using System.Windows.Forms;
8. using System.IO;
9. using MathWorks.MATLAB.NET.Arrays;//在 MWArray.dll,最常用的
10. using MathWorks.MATLAB.NET.Utility;// 在 MWArray.dll,最常用的
11. using third;
12. namespace MsPaint
13. {
14. public partial class Form1 : Form
15. {
16. public Form1()
17. {
18. InitializeComponent();
19. }
20. double[,] rbegin;
21. double[,] pend;
22. double[,] rpk;
23. double qt_mean;
24. double[] ce = new double[5];
25. MWArray d1;
26. double[,] f1;
27. MWArray[] agrsOut = new MWArray[4];//两个输出参数,一定要写数量
28. public Point[] ptlist;//存放点的数组
29. Point[] data = new Point[12000];
评论0