搜索结果
找到约 873 项符合
DO-WHILE 的查询结果
单片机编程 AVR单片机转速表
/**************************************************************** 
                外部晶振8M 
                PA0~3:四位数码管的位选 
                PB0~7:数码管 ...
图形图像 曲线曲面的微分几何学
最经典的曲线曲面微分几何学图书,巴西Manfredo P.do Carmo著,中译本
DSP工具/软件 tas3204
The TAS3204 is a highly-integrated audio system-on-chip (SOC) consisting of a fully-programmable, 48-bit digital audio processor, a 3:1 stereo analog input MUX, four ADCs, four DACs, and other analog functionality. The TAS3204 is programmable with the graphical PurePath Studio™ suite of DS ...
Java编程 SpringMVC设计
   springMVC有三个映射器,如果不定义映射Mapping,那么就会使默认:
l&nbsp;&nbsp; <bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"></bean>
也就是说:上面这个定义和不定义都是一样的。
不定义:
<bean id="testController" name="/hello.do" class="cn.itc ...
多媒体处理 透明音乐播放器
[开源 绿色软件] [运行环境 Windows XP/7/8/10] [语言 简体/繁體/English/Unicode]
A cool music player. Powered by Bass and BassVis.
极简本地音乐播放器,透明、纯文本界面。支持轻媒体库、歌词、可视化。最小化到托盘,占用资源少,适合边听音乐边工作。
应网友要求,加入了Tag编辑、自动切换列表、播放队列、鼠标手 ...
嵌入式综合 调光C程序
/*#include<reg52.h>
#define uint unsigned int
#define uchar unsigned char
#define uchar unsigned char
sbit K1=P3^4;
sbit K2=P3^5;
sbit ledr=P1^0;
sbit ledg=P1^1;
sbit ledb=P1^2;
bit LEDDirection=0;//LED控制方向0:渐亮1:渐灭
char &nbsp;pwm=0;
char &nbsp;pwmr=0;
char &nbsp;scw=0;//中断记数
char &nbsp ...
技术资料 基于8051+Proteus仿真案例
基础程序设计 01 闪烁的LED&nbsp;
/* &nbsp;名称闪烁的LED&nbsp;
&nbsp;说明LED按设定的时间间隔闪烁
*/&nbsp;
#include<reg51.h>&nbsp;
#define uchar unsigned char&nbsp;
#define uint unsigned int&nbsp;
sbit LED=P1^0;&nbsp;
//延时&nbsp;
void DelayMS(uint x) &nbsp;{&nbsp;
&nbsp;uchar i;&nbsp;
&nbsp;whil ...
技术资料 51单片机C语言程序设计Proteus仿真实训
基础程序设计 01 闪烁的LED&nbsp;
/* &nbsp;名称闪烁的LED&nbsp;
&nbsp;说明LED按设定的时间间隔闪烁&nbsp;
*/&nbsp;
#include<reg51.h>&nbsp;
#define uchar unsigned char&nbsp;
#define uint unsigned int&nbsp;
sbit LED=P1^0;&nbsp;
//延时&nbsp;
void DelayMS(uint x)&nbsp;{&nbsp;
&nbsp;uchar i;&nbsp;
&nbsp;w ...
源码 批处理感知器算法
批处理感知器算法的代码matlab
w1=[1,0.1,1.1;1,6.8,7.1;1,-3.5,-4.1;1,2.0,2.7;1,4.1,2.8;1,3.1,5.0;1,-0.8,-1.3;
&nbsp; &nbsp; 1,0.9,1.2;1,5.0,6.4;1,3.9,4.0];
w2=[1,7.1,4.2;1,-1.4,-4.3;1,4.5,0.0;1,6.3,1.6;1,4.2,1.9;1,1.4,-3.2;1,2.4,-4.0;
&nbsp; &nbsp; 1,2.5,-6.1;1,8.4,3.7;1,4.1,-2.2];
w3=[1,-3.0,-2. ...
源码 利用栈的基本操作实现将任意一个十进制整数N转化为R进制整数。
#include <stdlib.h>
#include<stdio.h>
#include <malloc.h>
#define stack_init_size 100
#define stackincrement 10
typedef struct sqstack
{
int *base;
int *top;
int stacksize;
} sqstack;
int StackInit(sqstack *s)
{
s->base=(int *)malloc(stack_init_size *sizeof(int));
if(!s->base)
return 0;
s->top=s->ba ...