-
多项式拟合 demo
1、把x,y数据复制在txt文件
2、输入拟合阶数
3、点击拟合
- 2023-08-07 19:15:03下载
- 积分:1
-
最优秀的大数计算源码,适合各种大数的计算,底层对各种机器进行汇编优化,速度最快...
最优秀的大数计算源码,适合各种大数的计算,底层对各种机器进行汇编优化,速度最快-the best source of large numbers calculated, for a wide range of large numbers, the bottom of the various machines compilation optimization, the fastest
- 2022-09-28 06:30:05下载
- 积分:1
-
宽度优先算法解决八码难题
宽度优先算法解决八码难题-width priority code algorithm to solve eight problems
- 2022-06-01 04:17:16下载
- 积分:1
-
LZW图片压缩算法
字符串和编码的对应关系是在压缩过程中动态生成的,并且隐含在压缩数据中,解压的时候根据表来进行恢复,算是一种无损压缩.
根据 Lempel-Ziv-Welch Encoding ,简称 LZW 的压缩算法,用任何一种语言来实现它.
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报 打分 发表评论 暂无评论
- 2022-06-01 05:25:33下载
- 积分:1
-
敏感词wordbank
package com.yaozhou.sensitive.wordbank;import java.io.BufferedInputStream;import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import java.util.ArrayList;import java.util.HashMap;import java.util.HashSet;import java.util.LinkedList;import java.util.List;import java.util.Map;import java.util.Properties;import java.util.Set;/** * @author Yao.Zhou* @version 创建时间:2016年12月21日 上午11:08:23 * 类说明 */@SuppressWarnings("unused")public class SensitiveWordBank {private static final String ENCODE = "UTF-8";private File path;private Map wordBankContainer;public SensitiveWordBank(String dir) {
- 2022-01-26 05:07:53下载
- 积分:1
-
虹膜识别程序
主要完成了在虹膜识别中的虹膜定位功能,采用了动态轮廓模型(ACTIVE CONTOUR MODEL)-一个学生的毕业设计,支持开源-Mainly completed in the iris recognition function of the iris location, using a dynamic contour model (ACTIVE CONTOUR MODEL)- a student
- 2023-07-13 09:15:04下载
- 积分:1
-
利用图形处理器进行加速的有限差分法源代码,绝对珍贵.
利用图形处理器进行加速的有限差分法源代码,绝对珍贵.-Use of graphics processors to accelerate the finite difference method source code is absolutely precious.
- 2022-03-11 23:46:46下载
- 积分:1
-
小波提升格式的java源代码,包括标准的分裂、预测和更新三步,以及一个实例...
小波提升格式的java源代码,包括标准的分裂、预测和更新三步,以及一个实例-Lifting format java source code, including the standard split, forecasts and updates of steps, and an example
- 2022-03-18 20:08:08下载
- 积分:1
-
这是一个支持多位数运算(可以达到几百位的长整数)的数类,名字叫Long,它是从long类发展过来的,但比原来的long类功能多。Long类可以和原有的doubl...
这是一个支持多位数运算(可以达到几百位的长整数)的数类,名字叫Long,它是从long类发展过来的,但比原来的long类功能多。Long类可以和原有的double,long等等数据类型混合运算-This is a multi-digit support operations (which may reach hundreds of long integers) to a number of named Long, it is long from over the type of development, but more than the original multi-functional long. Long classes can be double the original, long data types, etc. Operational mixed
- 2022-01-26 07:59:30下载
- 积分:1
-
四轴源码以及原理图
小四轴的源码以及原理图 #include "led.h"#include "delay.h"#include "sys.h"#include "key.h"#include "usart.h"#include "exti.h"#include "wdg.h"#include "timer.h"#include "pwm.h"#include "lcd.h"#include "MPU6050.h"#include "lsm330.h"u8 SPI1_Buffer_Rx1[6]="432423";s16 SPI1_Buffer_Rx[30];u8 k = 0;void SPI_Configuration(){ SPI_InitTypeDef SPI_InitStructure; /* SPI1 Config -------------------------------------------------------------*/ SPI_InitStructure.SPI_Direction = SPI_Direction_2Lines_FullDuplex; SPI_InitStructure.SPI_Mode = SPI_Mode_Master; SPI_InitStructure.SPI_DataSize = SPI_DataSize_8b; SPI_InitStructure.SPI_CPOL = SPI_CPOL_High; SPI_
- 2023-03-12 15:55:03下载
- 积分:1