1、 tabulate函数
a [1,2,1,3,1,4,1,5,2,3,1,4,2,5,4,2];tabulate(a)第一列代表了元素,第二类代表该元素出现的个数,第三列代表该元素的占比。
2、find函数和length函数
判断矩阵a中元素2出现的次数
a [1,2,1,3,1,4,1,5,2,3,1,4,2,5,4,2];
length(…
缘由https://bbs.csdn.net/topics/392551630
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.Windows.Forms;…