搜索结果
找到约 869 项符合
P-NETARM 的查询结果
技术书籍 现代操作系统(中文第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; ...
源码 12345
/****************temic*********t5557***********************************/ &nbsp;&nbsp;
#include &nbsp; <at892051.h> &nbsp; &nbsp;
#include &nbsp; <string.h> &nbsp;&nbsp;
#include &nbsp; <intrins.h> &nbsp; &nbsp;
#include &nbsp; <stdio.h> &nbsp; &nbsp;
#define &nbsp; &nbsp;uchar &nbsp; &nbsp;unsign ...
源码 matlab 0-1背包问题
遗传算法已经成为组合优化问题的近似最优解的一把钥匙。它是一种模拟生物进化过程的计算模型,作为一种新的全局优化搜索算法,它以其简单、鲁棒性强、适应并行处理以及应用范围广等特点,奠定了作为21世纪关键智能计算的地位。
背包问题是一个典型的组合优化问题,在计算理论中属于NP-完全问题, 其计算复杂度为,传统上 ...