AdaBoost, Adaptive Boosting, is a well-known meta machine learning algorithm that was proposed by Yoav Freund and Robert Schapire. In this project there two main files 1. ADABOOST_tr.m 2. ADABOOST_te.m to traing and test a user-coded learning (classification) algorithm with AdaBoost. A demo file (demo.m) is provided that demonstrates how these two files can be used with a classifier (basic threshold classifier) for two class classification problem.
标签: well-known algorithm AdaBoost Adaptive
上传时间: 2014-01-15
上传用户:qiaoyue
实现2ASK,2FSK,2PSK,MSK,GRAY转换自然码
标签: 2ASK
上传时间: 2013-12-26
上传用户:h886166
This small utility helps to generate seven segment display codes for different I/O connections. For example, AVR/PIC Port A.0 -> D Segment Port A.1 -> B Segment .... Also it can generate Common Cathode or Common Anode table codes.. I Coded it long time ago. I Hope help someone. Thank you
标签: connections different generate display
上传时间: 2014-01-17
上传用户:开怀常笑
ImpulseC Codeveloper fft code. This file implements the hardware portion of a 256 sample FFT using a radix-4 algorithm. This implementation demonstrates that results similar to hand-coded HDL can be achieved using the C language, and without using a low-level style of C code.
标签: Codeveloper implements ImpulseC hardware
上传时间: 2014-01-16
上传用户:hustfanenze
灰色预测GM(1,1)模型的matlab源代码,包括预测模型的建立,以及模型的精度检验指标c,p的计算-Gray prediction GM (1,1) model matlab source code, including the prediction model, as well as indicators of model accuracy test c, p calculation
标签: 灰色预测
上传时间: 2017-07-25
上传用户:refent
有多径信道、多普勒频移,瑞利、RICE(莱斯)信道等仿真,QPSK调制和解调等,交织编码。程序经过本人测试,绝对可用,并附上本人测试说明和仿真图像结果-I collected information on 2, how-path channel, Doppler frequency shift, Rayleigh, RICE (Rice) channel, such as simulation, QPSK modulation and demodulation, etc., Interleaved Coded. After I tested the procedure is absolutely available, along with my test images and simulation results indicate.
上传时间: 2015-06-16
上传用户:whtiger
Use the fast Fourier transform function fft to analyse following signal. Plot the original signal, and the magnitude of its spectrum linearly and logarithmically. Apply Hamming window to reduce the leakage. . The hamming window can be coded in Matlab as for n=1:N hamming(n)=0.54+0.46*cos((2*n-N+1)*pi/N); end; where N is the data length in the FFT.
标签: matlab fft
上传时间: 2015-11-23
上传用户:石灰岩123
#include <stdio.h> #include <stdlib.h> ///链式栈 typedef struct node { int data; struct node *next; }Node,*Linklist; Linklist Createlist() { Linklist p; Linklist h; int data1; scanf("%d",&data1); if(data1 != 0) { h = (Node *)malloc(sizeof(Node)); h->data = data1; h->next = NULL; } else if(data1 == 0) return NULL; scanf("%d",&data1); while(data1 != 0) { p = (Node *)malloc(sizeof(Node)); p -> data = data1; p -> next = h; h = p; scanf("%d",&data1); } return h; } void Outputlist(Node *head) { Linklist p; p = head; while(p != NULL ) { printf("%d ",p->data); p = p->next; } printf("\n"); } void Freelist(Node *head) { Node *p; Node *q = NULL; p = head; while(p != NULL) { q = p; p = p->next; free(q); } } int main() { Node *head; head = Createlist(); Outputlist(head); Freelist(head); return 0; } 2.顺序栈 [cpp] view plain copy #include <iostream> #include <stdio.h> #include <stdlib.h> ///顺序栈 #define MaxSize 100 using namespace std; typedef
上传时间: 2018-05-09
上传用户:123456..
灰色预测模型(Gray Forecast Model)是通过 少量的、不完全的信息,建立数学模型并做出预 测的一种预测方法.当我们应用运筹学的思想方法 解决实际问题,制定发展战略和政策、进行重大 问题的决策时,都必须对未来进行科学的预测. 预测是根据客观事物的过去和现在的发展规律, 借助于科学的方法对其未来的发展趋势和状况进 行描述和分析,并形成科学的假设和判断.
标签: 灰色预测模型
上传时间: 2019-07-21
上传用户:Tqco702
STC单片机资料 请用逗号分隔标签 * 资料描述:
上传时间: 2019-12-02
上传用户:hjd0303