虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

MAX-Min

  • //=== === === === === === === === === === === === === === = //函数说明 //函数名称:PolyFit //函数功能:最小二乘法曲线拟

    //=== === === === === === === === === === === === === === = //函数说明 //函数名称:PolyFit //函数功能:最小二乘法曲线拟合 //使用方法:double *x ---- 存放n个数据点的X坐标 // double *y ---- 存放n个数据点的Y坐标 // int n -------- 给定数据点个数 // double *a ---- 返回m-1次拟合多项式的m个系数 // int m -------- 拟合多项式的项数,即拟合多项式的最高次为m-1。要求m<=n,且 // m<=20。若m>n或m>20,则本函数自动按m=min{n,20}处理 // double *dt --- dt[0]返回拟合多项式与各数据点误差的平方和;dt[1]返回拟合多 // 项式与各数据点的误差绝对值之和;dt[2]返回拟合多项式与各数据 // 点误差绝对值的最大值 //注意事项:拟合多项式的形式为 y = b0 + b1*(x-Xavr)...

    标签: PolyFit 函数 最小二乘法

    上传时间: 2015-07-19

    上传用户:waizhang

  • FPGA数字钟的设计

    FPGA数字钟的设计,用VHDL语言编程,max+plus仿真,可在实际电路中验证

    标签: 数字

    上传时间: 2015-07-25

    上传用户:924484786

  • 本软件在CPLD上实现数字PWM控制

    本软件在CPLD上实现数字PWM控制,用Verilog HDL语言编写,在MAX PLUS II调试成功,可用

    标签: CPLD PWM 软件 数字

    上传时间: 2015-08-04

    上传用户:dancnc

  • 一个小程序

    一个小程序,用Veilog HDL编写的,可以用于篮球比赛的倒计时牌,已在max-plusII上仿真通过。

    标签: 程序

    上传时间: 2015-08-15

    上传用户:许小华

  • 1.功能 利用广义逆求解无约束条件下的优化问题(C语言) 2.参数说明 int m : 非线性方程组中方程个数 int n : 非线性方程组中未知数个数 double eps1 : 控制

    1.功能 利用广义逆求解无约束条件下的优化问题(C语言) 2.参数说明 int m : 非线性方程组中方程个数 int n : 非线性方程组中未知数个数 double eps1 : 控制最小二乘解的精度要求 double eps2 : 用于奇异值分解中的控制精度要求 double x[n] : 存放非线性方程组解的初始近似值X(0),要求各分量不全为0 int ka : Ka=max{m,n}+1 void (*f)() : 指向计算非线性方程组中各方程左端函数值的函数名(用户自编) void (*s)() : 指向计算雅可比矩阵的函数名 int ngin() : 函数返回一个标志值 3.文件说明 ngin.c函数文件 ngin0.c主函数文件

    标签: int double eps1 方程

    上传时间: 2013-12-23

    上传用户:大三三

  • * CONSTRAINTS * This module does not handle data which is considered out of range by the * appli

    * CONSTRAINTS * This module does not handle data which is considered out of range by the * application(i.e. fixed constants which represent error condition) * * Maximum weight value must be limited to 128 to prevent an overflow * condition during the calculation. * * The internal data type must be large enough to handle the calculations. * The maximum possible internal value * = Max Input Value * (weight - 1) + Max Input Value * If a maximum weight of 128 is used, the internal data type should be 2 * times the size of the input data type.

    标签: CONSTRAINTS considered module handle

    上传时间: 2015-09-07

    上传用户:qunquan

  • 智能机器小车主要完成寻迹功能

    智能机器小车主要完成寻迹功能,由机械结构和控制单元两个部分组成。机械结构是一个由底盘、前后辅助轮、控制板支架、传感器支架、左右驱动轮、步进电机等组成。控制单元部分主要由主要包含传感器及其调理电路、步进电机及驱动电路、控制器三个部分。本设计的核心为控制器部分,采用Altera MAX7000S系列的EPM7064LC84-15作主控芯片。CPLD芯片的设计主要在MAX+plusⅡ10.0环境下利用VHDL语言编程实现。驱动步进电机电路主要利用ULN2803作为驱动芯片。

    标签: 智能机

    上传时间: 2015-09-07

    上传用户:cjf0304

  • 文件上传源码 Multiple stores supported (Folder, Zip, Database, Memory). Security features (Blacklist, Fil

    文件上传源码 Multiple stores supported (Folder, Zip, Database, Memory). Security features (Blacklist, FileSizeLimit, Max. Uploaded files). Notification and history features.

    标签: Blacklist supported Multiple Database

    上传时间: 2013-12-10

    上传用户:jkhjkh1982

  • 一個很好用的 lcd 時鐘程序 C語言 #include<reg51.h> #include<stdio.h> //定義計時器0 的重裝值 #define RELOAD

    一個很好用的 lcd 時鐘程序 C語言 #include<reg51.h> #include<stdio.h> //定義計時器0 的重裝值 #define RELOAD_HIGH 0x3C #define RELOAD_LOW 0xD2 //定義按鍵彈跳時間 #define DB_VAL //定義設置模式的最大時間間隔 #define TIMEOUT 200 //定義游標位置常數 #define HOME 0 #define HOUR 1 #define MIN 2 #define SEC 3

    标签: include define RELOAD stdio

    上传时间: 2014-12-19

    上传用户:zukfu

  • 此为秒表程序

    此为秒表程序,具有秒表的一般基本功能,已在MAX+plusII 10.2下编译通过。

    标签: 程序

    上传时间: 2013-12-22

    上传用户:woshini123456