搜索结果
找到约 874 项符合
TML-P 的查询结果
单片机编程 红外解码程序
/*
 * _168ZHONGDUAN2.c
 *
 * Created: 2014/11/2 15:12:45
 *  Author: lenovo
 */ 
#include <avr/io.h>
#include <avr/iom168pa.h>
#include <avr/interrupt.h>
#include <util/delay.h>
#include <avr/eeprom.h>
//#include <util/delay_basic.h>
//unsigned char const SEGtabl ...
设计相关 C语言程序
http://tv.sogou.com/v?query=c%D3%EF%D1%D4%CA%D3%C6%B5%BD%CC%B3%CC&p=40230600&tn=0&st=255
图形图像 曲线曲面的微分几何学
最经典的曲线曲面微分几何学图书,巴西Manfredo P.do Carmo著,中译本
Windows编程 Windows read compass sensor code
现在很多windows平板 带有很多sensor&nbsp;
本代码可以运行在win8、win10下 读取compass的值
只要稍加修改API中的参数 即可读取其他sensor的值
大家可以从中学习如何在windows下如何读取传感器数值
例如Lightsensor Accelerometer Gyrometer P-sensor等
...
技术书籍 现代操作系统(中文第3版)
现代操作系统,中文第三章p d f aaaaaaaa
其他文档 基于DS P的开关电源的设计与实现
采用数字信号处理器设计了一种开关电源。介绍了开关电源的构成及其控制方式;描述了TMS320LF2407的结构特点及其在开关电源控制电路中的主要功能与实现:介绍了基于DSP的PWM型开关电源的硬件结构和软件设计流程。
技术教程 python游戏编程之旅.CHM
介绍以python+pygame库进行小游戏的开发
It come from:
http://www.cnblogs.com/msxh/p/4966899.html
其他 2013遗传算法工具箱
% 生成训练样本集
clear all;
clc;
P=[110 0.807 240 0.2 15 1 18 2 1.5;
110 2.865 240 0.1 15 2 12 1 2;
110 2.59 240 0.1 12 4 24 1 1.5;
220 0.6 240 0.3 12 3 18 2 1;
220 3 240 0.3 25 3 21 1 1.5;
110 1.562 240 0.3 15 3 18 1 1.5;
110 0.547 240 0.3 15 1 9 2 1.5];
0 1.318 ...
仿真技术 matlab-均值滤波.中值滤波
I=imread('fig1.jpg');%从D盘名为myimages的文件夹中读取。格式为jpg的图像文件chost
J=imnoise(I,'salt & pepper',0.02);%给图像加入均值为0,方差为0.02的淑盐噪声
subplot(2,4,1);
imshow(I);
title('原始图像');
subplot(2,4,2);
imshow(J);
title('加入椒盐噪声之后的图像');
%h=ones(3,3)/ ...
源码 c语言算法排序
1.Describe a Θ(n lg n)-time algorithm that, given a set S of n integers and
another integer x, determines whether or not there exist two elements in S whose sum is exactly x. (Implement exercise 2.3-7.)
#include<stdio.h>
#include<stdlib.h>
void merge(int arr[],int low,int mid,int high){
&nbsp; ...