- 博客(5)
- 收藏
- 关注
原创 学生课程管理
学生类、课程类、教师类学生类:学号、姓名、课程课程类:课程号、课程名、课程备注、代课教师教师类:教师编号、姓名import sysclass Student: """保存学生的数据""" def __init__(self, no='', name='', cour=''): self.no = no self.name = name self.cour = cour def add(self):
2022-05-12 16:03:01
252
1
原创 python 高斯约当消元法求逆矩阵
judge函数判断该矩阵该矩阵是否有逆矩阵calculate计算逆矩阵import sysclass MatrixInverse: """"求逆矩阵""" def __init__(self, matrix): self.matrix = matrix self.a = len(self.matrix) self.b = len(self.matrix[0]) if self.a != self.b:
2022-05-12 15:53:20
1110
1
使用MATLAB输出图像的三通道图像和HSI变换图像结果
2024-07-28
python爬虫+图片识别+可视化-轮播图
2023-12-19
MATLAB实现遗传算法
2023-07-24
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅