-
C51动态数码管代码
C51动态数码管代码,初学者适用
- 2022-01-24 14:17:23下载
- 积分:1
-
该书详细介绍了如何利用matlab对信号进行处理
该书详细介绍了如何利用matlab对信号进行处理- This book in detail introduced how carries on using matlab to
the signal processes
- 2022-08-20 07:18:11下载
- 积分:1
-
LMS中的最小二乘算法,求解最小二乘问题
lms最小平方中位数算法,用来解决最小二乘问题-LMS median least squares algorithm, to solve least squares problem
- 2022-04-07 21:48:20下载
- 积分:1
-
数学建模若干问题的论文
数学建模若干问题的论文- Mathematics modelling certain questions papers
- 2022-04-29 15:18:04下载
- 积分:1
-
Mathematical Modeling of experiences, the preparation team and have team members...
数学建模的经验之谈,对准备参赛及已经参赛的队员有一定的指导意义。对参加工作的科研人员也有一定借鉴作用。-Mathematical Modeling of experiences, the preparation team and have team members have a certain significance. For participating in the work of researchers also have some reference.
- 2022-12-17 13:20:03下载
- 积分:1
-
基于眼动跟踪的驾驶员疲劳检测
Driver Fatigue Detection Based on Eye Tracking
- 2022-03-18 05:38:51下载
- 积分:1
-
Lsr2d 算法
LSR2D - Build projection matrix L for straight rays in 2D.
% Input
% Tx: transmitter coordinates, nTx by 2
% 1st column contains X coordinates, 2nd contains Z coordinates
% Rx: receiver coordinates, nRx by 2
% 1st column contains X coordinates, 2nd contains Z coordinates
% grx: vector of X coordinates of cell boundaries (sorted increasing)
% grz: vector of Z coordinates of cell boundaries (sorted increasing)
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-03-13 10:35:57下载
- 积分:1
-
C++代码大全
C++经典的代码带全,基于C++ 代码生成同应用,可以方便快捷的编写程序,无需重新重写代码,大大加强程序编写进度,十分有效和使用,可以试试。
- 2022-06-16 21:54:46下载
- 积分:1
-
顺序队列C实现
#include "stdio.h" #include "stdlib.h" #include "io.h" #include "math.h" #include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 20 /* 存储空间初始分配量 */typedef int Status; typedef int QElemType; /* QElemType类型根据实际情况而定,这里假设为int *//* 循环队列的顺序存储结构 */typedef struct{ QElemType data[MAXSIZE]; int front; /* 头指针 */ int rear; /* 尾指针,若队列不空,指向队列尾元素的下一个位置 */}SqQueue;Status visit(QElemType c){ printf("%d ",c); return OK;}/* 初始化一个空队列Q */Status Init
- 2022-08-13 11:29:01下载
- 积分:1
-
基于最小二乘原理的正交多项式拟和输入原始数据及拟和次数即可输出最终拟和表达式系数...
基于最小二乘原理的正交多项式拟和输入原始数据及拟和次数即可输出最终拟和表达式系数-based on the principle of least squares orthogonal polynomials and to the importation of the raw data and can be exported and the number of proposed and final expression coefficient
- 2023-02-25 11:25:03下载
- 积分:1