摘要: New a form1.Drag a SetProperties control from toolbox into the form1.new a class to set the properties for SetProperties, for example "AxisLimits.cs"In AxisLimits.cs, write as:[Description("Sets the m... 阅读全文
posted @ 2009-09-11 23:03 greencolor 阅读(391) 评论(0) 推荐(0) 编辑
摘要: FIG2D.cs (A form style in the project)In a new Form.using ...namespace ..{ private FIG2D form1; // Here, we defined a new form1, which adaptsthe FIG2D form // (form1 have everythingfrom FIG2D. Mehtod... 阅读全文
posted @ 2009-09-11 21:42 greencolor 阅读(193) 评论(0) 推荐(0) 编辑
摘要: double[,] Temp1 = new double[1,3];Temp1= (double[,])((MWNumericArray)mwArgout[1]).ToArray(MWArrayComponent.Real); ---------------output from MATLAB, this is array ----------------- Convert to MWNumeri... 阅读全文
posted @ 2009-09-10 21:28 greencolor 阅读(265) 评论(0) 推荐(0) 编辑
摘要: double maxzvalue = -1.7E+308;double minzvalue = 1.7E+308; 阅读全文
posted @ 2009-09-09 22:55 greencolor 阅读(159) 评论(0) 推荐(0) 编辑
摘要: Project name ("Givename") Properities References File archieve sub file in this File archieve ("Givenametwo") *.cs file( Namespace "Givename.Givenametwo") *.cs file (Namespace "Givename") 阅读全文
posted @ 2009-09-08 13:57 greencolor 阅读(167) 评论(0) 推荐(0) 编辑
摘要: class Applicationdata{ private static ArrayList listxvalue; static Applicationdata() { listxvalue = new ArrayList(); } public static ArrayList Listxvalue { get { return listxvalue; } }}// In the main ... 阅读全文
posted @ 2009-09-07 23:26 greencolor 阅读(227) 评论(0) 推荐(0) 编辑
摘要: Download Java SE Development Kit 6u16 for Windows, Multi-language Java SE Development Kit 6u16 jdk-6u16-windows-i586.exe 73.54 MB 阅读全文
posted @ 2009-09-05 22:45 greencolor 阅读(221) 评论(0) 推荐(0) 编辑
摘要: X = -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3Y = -3.0000 -2.7931 -2.5862 -2.3793 -2.1724 -1.9655 -1.7586 -1.5517 -1.3448 -1.1379 -0.9310 -0.7241 -0.5172... 阅读全文
posted @ 2009-09-04 22:33 greencolor 阅读(169) 评论(0) 推荐(0) 编辑
摘要: a.GetLength(0);//行数 a.GetLength(1);//列数 阅读全文
posted @ 2009-09-03 16:48 greencolor 阅读(167) 评论(0) 推荐(0) 编辑
摘要: float[,] y1 = new float[1, 5]; y1[0, 0] = 5; y1[0, 1] = 4; y1[0, 2] = 3; y1[0, 3] = 2; y1[0, 4] = 1;y1{Dimensions:[1, 5]} [0, 0]: 5.0 [0, 1]: 4.0 [0, 2]: 3.0 [0, 3]: 2.0 [0, 4]: 1.0 阅读全文
posted @ 2009-09-02 12:44 greencolor 阅读(166) 评论(0) 推荐(0) 编辑