-
适合初学者的多个小游戏源代码C程序
压缩文件包含学生成绩管理系统源码、俄罗斯方块源码、猜字游戏、贪吃蛇C、单词记事本等多个源代码文件,以文本形式保存,适合初学者进行日常练习
- 2023-01-19 01:45:04下载
- 积分:1
-
线性回归模型c++
程序为c++完成,机器学习入门内容,线性回归在预测、分类等方面有较好的效果。该程序包含了训练数据和测试数据。利用训练数据可以训练模型的参数,最后带入测试数据。
- 2022-08-17 17:54:49下载
- 积分:1
-
wpf-3d相册效果
wpf
翻转特效照片效果
效果非常惊艳
动态,翻转,旋转,3D
- 2022-03-09 22:30:27下载
- 积分:1
-
svm
LIBSVM预测代码,应用于负荷预测,上证指数回归预测等等等。
- 2022-02-04 01:37:53下载
- 积分:1
-
提取CODE电离层
IGS是全球GNSS服务组织,能向广大用户提供精密定位所需产品,包含电离层与对流层产品等,本程序的主要功能为用来提取IGS全球服务组织CODE中心的电离层VETC数据。
- 2023-01-15 10:35:03下载
- 积分:1
-
三源的实现
实现三维坐标变换的源程序,包括平移,旋转,比例变换,对称变换-The realization of the source of three-dimensional coordinate transformation, including translation, rotation, the ratio of transformation, symmetry transform
- 2022-02-09 13:30:43下载
- 积分:1
-
PalantirSource
PPC上c#编写的PPC控制PC源代码PalantirSource(PPC on the c# Prepared PPC control PC source code PalantirSource)
- 2008-12-25 18:09:59下载
- 积分:1
-
LPC17xx基础例程(直接操作寄存器)
LPC17xx基础例程,使用编译器keil mdk4.2,采用寄存器操作方式,间接明了,非常适合NXP初学者,方便开发者学习和移植
- 2023-05-10 10:25:12下载
- 积分:1
-
Python 提取网页信息工具
参考资料: 1, BeautifulSoup: http://www.crummy.com/software/BeautifulSoup/2, Martin Fowler: Domain-Specific Languages.3, Internal-DSL: http://en.wikipedia.org/wiki/Domain-specific_language4, Fluent Interface: http://en.wikipedia.org/wiki/Fluent_interface
- 2014-03-10下载
- 积分:1
-
STM32F1的SPWM逆变器源码
#include "SPWM.h"
#include "led.h"
#include "usart.h"
u16 TimerPeriod = 7200;
u16 DutyFactor = 50;
void TIM_Int_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
TIM_TimeBaseInitTypeDef TIM_TimeBaseStructure;
NVIC_InitTypeDef NVIC_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_GPIOB, ENABLE);
RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM4 | RCC_APB1Periph_TIM3,ENABLE); //时钟使能
/* GPIOA配置:通道PA.6和PA.7作为输出引脚*/
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6 | GPIO_Pin_7;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
&nbs
- 2022-07-26 17:50:34下载
- 积分:1