
.net开发
作小寒
城市感知计算(sensingcity)
展开
-
解决撰写毕业论文时知网空格处理与中英字符串转化
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.W...原创 2018-01-19 22:26:09 · 1026 阅读 · 0 评论 -
C#实现矩阵基本运算
//矩阵打包成类,矩阵为m * n,直接调用 public class Matrix { double[,] A; int m, n; string name; public Matrix(int am, int an) { ...原创 2018-02-13 01:17:15 · 26187 阅读 · 0 评论