-
Laba_0
#include "comparer.h"
#include <iostream>
using namespace std
int Comparer::compareByName(Student& s1,Student& s2)
{
return strcmp(s1.m_szName,s2.m_szName)
}
int Comparer::compareBySurname(Student& s1,Student& s2)
{
return strcmp(s1.m_szSurname,s2.m_szSurname)
}
int Comparer::compareByGroup(Student& s1,Student& s2)
{
- 2010-01-21 00:05:09下载
- 积分:1
-
smth
MATLAB SIMULINK 改进型SIMITH预估控制器(MATLAB SIMULINK improved SIMITH forecast controller)
- 2014-01-17 10:25:50下载
- 积分:1
-
Image-binarization-processing
利用matlab的GUI设计的图像二值化处理的可视化界面,包含所需的操作界面和m文件,可对图片进行导入、二值化处理及保存等操作。 (A visual interface of image binarization processing designed by Matlab GUI.It contains the desired interface and m file, you can import the picture, do binarization processing and preserve the new image.)
- 2013-09-22 10:21:48下载
- 积分:1
-
31---Recursion
this is simple recursion code for beginners...
- 2015-04-04 14:04:27下载
- 积分:1
-
deec-VS-leach.matlab
此代码将leach和deec协议进行比较,对毕设要坐这方面的同学很有帮助,大家有兴趣可以看看。(This code will leach and deec protocol comparison, the complete set up to take the students very helpful in this regard, we are interested can look at.)
- 2014-01-20 17:27:55下载
- 积分:1
-
Grey-Model(2)
灰色模型GM(1,1)的matlab代码(Gray model)
- 2011-11-09 09:26:12下载
- 积分:1
-
code-for-vc-and-matlab
VC++与Matlab混合编程的快速实现(code for vc and matlab)
- 2011-08-29 16:38:44下载
- 积分:1
-
m_to_COM
在VISUAL C++ 6.0编译器环境下,实现MATLAB中COM组件的开发。(In VISUAL C++ 6.0 compiler environment, to achieve the development of MATLAB, COM components.)
- 2010-05-17 16:02:07下载
- 积分:1
-
ProgramAnalyze
一个可以用来分析程序复杂度的程序,可以评价程序的复杂度(A program can be used to analyze the complexity of the process, the complexity of procedures can be evaluated)
- 2010-03-07 21:52:46下载
- 积分:1
-
example4_6
:滤波
fs=400 采样频率,必须大于两倍基带信号最高频率
ts=1/fs 采样时间间隔
T=5 时间窗大小
t=0:ts:T (hf1=zeros(1,N)
hf1(f<=B1&f>=-B1)=1
y1=hf1.*fftshift(y)
figure
subplot(211)
plot(f,abs(fftshift(y))/N,f,hf1, r-- )
axis([-fs/2,fs/2,0,1.2])
title( 原信号频谱 )
xlabel( f /Hz )
subplot(212)
plot(f,abs(y1)/N)
title( 低通滤波,截止频率90Hz )
xlabel( f /Hz ))
- 2010-05-25 20:58:05下载
- 积分:1