Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - max
Search - max - List
DL : 0
photoshop图像文件格式说明-photoshop image file format description
Date : 2025-12-28 Size : 291kb User : 站长

MAX+PLUSII不错的电子书,内容详细,易懂.-MAX PLUSII good e-books, detailed, understandable.
Date : 2025-12-28 Size : 256kb User : zhoudefang

Quartus II 是Altara公司继MAX II之后开发的新软件,很适合做FPGA的开发。-Quartus II is Altara after the company following the MAX II development of new software, it is suitable for FPGA development.
Date : 2025-12-28 Size : 825kb User : cathy

DL : 0
求数组中最大的一个元素,给出了最简单的一个实例,应运时之需要改变数字即可-calculator the max one
Date : 2025-12-28 Size : 1kb User : 杨晓彬

esult,conf,pResult,user,system,include,char,male,close,print,size,count,return,center,intf,脚本语言,catuser,一条记录,maleus,max在linux上写程序、做网管的人,或多或少都会几种脚本。脚本语言灵活的变量类型、强大的正则表达式处理能力,再加上linux系统本身的管道、重定向以及丰富的命令行工具,让你编程起来游刃有余。 -esult, conf, pResult, user, system, include, char, male, close, print, size, count, return, center, intf, scripting language, catuser, a record, maleus, max write procedures in linux, so management people, more or less will be a few scripts. Scripting language variable of the type of flexible, powerful regular expression handling capacity, together with their own linux system pipes, redirection, and rich command-line tool that allows you to easily program.
Date : 2025-12-28 Size : 5kb User : 邹氏

m3g file for mobile phone or 3ds Max scene. It can be used for mobile phones and also for 3d design with 3Ds max application, or java and other software.
Date : 2025-12-28 Size : 25kb User : BaGor

max文件里的矩阵含义,很绕,需要的学习下吧,做Max导出插件时可以看看的。-matrix implications max file, it is around the need to learn, are you, do export plug-in can take a look at Max' s.
Date : 2025-12-28 Size : 4kb User : Leo

利用EM算法来实现参数估计,两个等概率事件-expectation max
Date : 2025-12-28 Size : 1kb User : zhanjun

DL : 0
vc6中文乱码问题的解决方法,vc6中保存时经常出现中文乱码问题,提出了解决方法-the solution to chinese max
Date : 2025-12-28 Size : 29kb User : 陈集

DL : 0
1. 有5个学生,每个学生的数据包括学号、姓名、三门课的成绩,从键盘输入5个学生的数据,要求打印出三门课总平均成绩,以及最高分的学生的数据(包括姓名、学号、三门课的成绩、平均分数)。要求用一个input函数输入成绩;用average函数求总平均分;用max函数找出最高分学生数据;总平均分和最高分的学生的数据在主函数中输出。-1. 5 students, each student data including student number, name, course grades, five students in the data input from the keyboard, requires printing (including a three-course total grade point average, and the highest score of the student' s data name, student number, course grades, average scores). Requires an input function input results Everage score average function max function to find the highest score student data data of students' overall average score and the highest score in the main function output.
Date : 2025-12-28 Size : 1kb User : 马脸

3ds max sdk导出插件编写的心得,简单明确的介绍了3dsmax sdk的编写,值得初学者学习。-3ds max sdk experience, export plug-ins written in simple and clear introduction to the preparation of 3dsmax sdk worth for beginners to learn.
Date : 2025-12-28 Size : 326kb User : Merisad

DL : 0
Visual c++ 练习题 1.便写程序用if else分支结构语句,求a,b,c三个数中最大的 数并将其放在变量max中。-Visual c++ exercises
Date : 2025-12-28 Size : 1kb User : 李文弟

DL : 0
用函数实现排序找最大值求方差.用C语言编写的-Achieve the sort function to find the maximum value with the variance. Using C language
Date : 2025-12-28 Size : 4kb User : hanzhenhua

自己写的求解网络最大流问题的Ford-Fulkerson迭代算法MATLAB实现代码-MATLAB code of Ford-Fulkerson algorithm for solving max flow problem in network
Date : 2025-12-28 Size : 1kb User : duduwei

Real-time performance of adaptive digital signal processing algorithms is required in many applications but it often means a high computational load for many conventional processors. In this paper, we present a configurable hardware architecture for adaptive processing of noisy signals for target detection based on Constant False Alarm Rate (CFAR) algorithms. The architecture has been designed to deal with parallel/pipeline processing and to be configured for three versions of CFAR algorithms, the Cell-Average, the Max and the Min CFAR. The architecture has been implemented on a Field Programmable Gate Array (FPGA) with a good performance improvement over software implementations. Results are presented and discussed.
Date : 2025-12-28 Size : 57kb User : nacer1606

DL : 0
题目:#if #ifdef和#ifndef的综合应用。 1. 程序分析: 2.程序源代码: 复制代码 代码如下: #include stdio.h #include conio.h #define MAX #define MAXIMUM(x,y) (x>y)?x:y #define MINIMUM(x,y) (x>y)?y:x void main() { int a=10,b=20 #ifdef MAX printf( \40: The larger one is d\n ,MAXIMUM(a,b)) #else printf( \40: The lower one is d\n ,MINIMUM(a,b)) #endif #ifndef MIN printf( \40: The lower one is d\n ,MINIMUM(a,b)) #else printf( \40: The larger one is d\n ,MAXIMUM(a,b)) #endif #undef MAX #ifdef MAX printf( \40: The larger one is d\n ,MAXIMUM(a,b)) #else printf( \40: The lower one is d\n ,MINIMUM(a,b)) #endif #define MIN #ifndef MIN printf( \40: The lower one is d\n ,MINIMUM(a,b)) #else printf( \40: The larger one is d\n ,MAXIMUM(a,b)) #endif getch() }-Title: Integrated application#if#ifdef and#ifndef of. 1. Program analysis: 2. Source Code: Copy the code code is as follows: #include stdio.h #include conio.h #define MAX ?#define MAXIMUM (x, y) (x> y) x: y ?#define MINIMUM (x, y) (x> y) y: x void main () {     int a = 10, b = 20 #ifdef MAX     printf ( \ 40: The larger one is d \ n , MAXIMUM (a, b)) #else     printf ( \ 40: The lower one is d \ n , MINIMUM (a, b)) #endif #ifndef MIN     printf ( \ 40: The lower one is d \ n , MINIMUM (a, b)) #else     printf ( \ 40: The larger one is d \ n , MAXIMUM (a, b)) #endif #undef MAX #ifdef MAX     printf ( \ 40: The larger one is d \ n , MAXIMUM (a, b)) #else     printf ( \ 40: The lower one is d \ n , MINIMUM (a, b)) #endif #define MIN #ifndef MIN     printf ( \ 40: The lower one is d \ n , MINIMUM (a, b)) #else     printf ( \ 40: The larger one is d \ n
Date : 2025-12-28 Size : 3kb User : 张欣欣

题目:#if #ifdef和#ifndef的综合应用。 程序源代码: #include stdio.h #include conio.h #define MAX #define MAXIMUM(x,y) (x>y)?x:y #define MINIMUM(x,y) (x>y)?y:x void main() { int a=10,b=20 #ifdef MAX printf( \40: The larger one is d\n ,MAXIMUM(a,b)) #else printf( \40: The lower one is d\n ,MINIMUM(a,b)) #endif #ifndef MIN printf( \40: The lower one is d\n ,MINIMUM(a,b)) #else printf( \40: The larger one is d\n ,MAXIMUM(a,b)) #endif #undef MAX #ifdef MAX printf( \40: The larger one is d\n ,MAXIMUM(a,b)) #else printf( \40: The lower one is d\n ,MINIMUM(a,b)) #endif #define MIN #ifndef MIN printf( \40: The lower one is d\n ,MINIMUM(a,b)) #else printf( \40: The larger one is d\n ,MAXIMUM(a,b)) #endif getch() }-Title: Integrated application#if#ifdef and#ifndef of. Source Code: #include stdio.h #include conio.h #define MAX ?#define MAXIMUM (x, y) (x> y) x: y ?#define MINIMUM (x, y) (x> y) y: x void main () {     int a = 10, b = 20 #ifdef MAX     printf ( \ 40: The larger one is d \ n , MAXIMUM (a, b)) #else     printf ( \ 40: The lower one is d \ n , MINIMUM (a, b)) #endif #ifndef MIN     printf ( \ 40: The lower one is d \ n , MINIMUM (a, b)) #else     printf ( \ 40: The larger one is d \ n , MAXIMUM (a, b)) #endif #undef MAX #ifdef MAX     printf ( \ 40: The larger one is d \ n , MAXIMUM (a, b)) #else     printf ( \ 40: The lower one is d \ n , MINIMUM (a, b)) #endif #define MIN #ifndef MIN     printf ( \ 40: The lower one is d \ n , MINIMUM (a, b)) #else     printf ( \ 40: The larger one is d \ n , MAXIMUM (a, b)) #endif     getch () }
Date : 2025-12-28 Size : 3kb User : 张欣欣

Warcraft MDX Maxscript Exporter/Importer and other tools for 3ds max
Date : 2025-12-28 Size : 135kb User : BlinkHawk
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.