搜索结果
找到约 1,149 项符合
TML-R 的查询结果
数值算法/人工智能 a sub-cell WENO reconstruction method
We introduce a sub-cell WENO reconstruction method to evaluate spatial derivatives in the high-order ADER scheme. The basic idea in our reconstruction is to use only r stencils to reconstruct the point-wise values of solutions and spatial derivatives for the 2r-1 th order
ADER scheme in one dimensio ...
单片机编程 红外解码程序
/*
 * _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 ...
系统设计方案 sql学校教室管理系统设计
高校教室管理系统,其中包括:E—R图,电子表格,SQL语句,模块图,关系图,查询截图等。涉及职工的信息,教室的信息,课程的信息三个方面的数据
Linux/uClinux/Unix编程 linux
简单命令使用grep等的使用
[zorro@isch ~]$ history
&nbsp; &nbsp; 1 &nbsp;ifconfig
&nbsp; &nbsp; 2 &nbsp;su
&nbsp; &nbsp; 3 &nbsp;exit
&nbsp; &nbsp; 4 &nbsp;ls
&nbsp; &nbsp; 5 &nbsp;cd Desktop/
&nbsp; &nbsp; 6 &nbsp;ls
&nbsp; &nbsp; 7 &nbsp;tar zxcf VMwareTools-8.4.5-324285.tar.gz&nbsp;
&nbsp; &nb ...
其他 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 ...
书籍 C语言教程讲义(谭浩强)
C语言是在 70 年代初问世的。一九七八年由美国电话电报公司(AT&T)贝尔实验室正
式 发 表 了 C 语 言 。 同 时 由 B.W.Kernighan 和 D.M.Ritchit 合 著 了 著 名 的 “THE C
PROGRAMMING LANGUAGE” 一书。 通常简称为《 K&R》, 也有人称之为《 K&R》 标准。
但是, 在 《 K&R》中并没有定义一个完整的标准 C 语言, 后来 ...
源码 利用栈的基本操作实现将任意一个十进制整数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 ...