[emotion recognition] speech emotion recognition based on Neural Network

1, Introduction 1 Overview BP (Back Propagation) neural network was proposed by the scientific research group headed by Rumelhart and McCelland in 1986. See their paper learning representations by Back Propagation errors published in Nature. BP neural network is a multilayer feedforward network trained by error back propagation algorithm. It ...

Added by cgm225 on Thu, 10 Feb 2022 22:16:24 +0200

[TSP] solving traveling salesman problem based on GUI genetic algorithm [Matlab 110]

1, Introduction 1 overview of genetic algorithm Genetic Algorithm (GA) is a part of evolutionary computation. It is a computational model that simulates the biological evolution process of Darwin's genetic selection and natural elimination. It is a method to search the optimal solution by simulating the natural evolution process. The algorithm ...

Added by cool30 on Thu, 10 Feb 2022 14:25:46 +0200

Scrambling part of OFDM

Scrambling code of OFDM 1. Purpose In digital communication, if long 0 or 1 sequences often appear, it will affect the establishment and maintenance of bit synchronization. Using scrambling code in the transmitter can avoid the adverse effect of this data on the timing of the receiver. At the same time, in order to limit the crosstalk caused b ...

Added by DamianTV on Thu, 10 Feb 2022 06:10:46 +0200

Random sampling consensus algorithm (RANSAC) theory introduction and program implementation

1. Introduction to Random sample consensus (RANSAC) theory Ordinary LS is conservative: how to achieve the best under the existing data. It is to consider from the perspective of minimizing the overall error and try not to offend anyone. RANSAC is a reformist: first, assume that the data has some characteristics (purpose), and appropriately g ...

Added by simpjd on Thu, 10 Feb 2022 04:00:52 +0200

[image processing] Based on image histogram + filtering + wavelet transform + segmentation processing system matlab source code, including GUI

1, Introduction GUI image histogram, filtering, wavelet transform and segmentation processing system based on MATLAB Part1 introduction to the wavelet transform 1,Origin of the wavelet transform: The theories of Wavelet originate from diffierent areas of study:  Engineering Time-frequency analysis and Multiresolution Analysis  Computer V ...

Added by uday on Thu, 10 Feb 2022 02:31:23 +0200

Introduction to particle swarm optimization algorithm. Determination of inertia weight w

Introduction to particle swarm optimization 03: with Matlab and python code (PSO) VIII: Inertia weight w reflects the ability of particles to inherit the previous velocity. Shi Y first introduced inertia weight w into PSO algorithm, and analyzed and pointed out that a larger inertia weight value is conducive to global search, while a smaller ...

Added by firstcoastshopping on Thu, 10 Feb 2022 00:58:35 +0200

Array index in Matlab

catalogue Index by element position Using a single index Index using logical values In MATLAB ® There are three main methods to access array elements according to the position (index) of elements in the array: position index, linear index and logical index. Index by element position The most common method is to explicitly specify th ...

Added by gukii on Sun, 06 Feb 2022 04:06:09 +0200

Machine learning: use matlab to realize K-means algorithm to complete clustering and image compression

Principles Principle here , we can see from the principle that the K-means algorithm mainly has three parts - random initialization, clustering division and moving aggregation. Random initialization Using the randperm function, the 1 ∼ m ...

Added by apollyon on Sun, 06 Feb 2022 00:36:29 +0200

Machine learning: Using matlab to realize SVM to solve classification problems

tips Because now there are many mature SVM software or packages to minimize the cost function to solve the parameter values. They are written by experts in the field of machine learning and use many advanced optimization and implementation skills. They are far from being comparable to the solutions I write now. Is it not fragrant? After u ...

Added by smokenwhispers on Wed, 02 Feb 2022 22:50:20 +0200

[MatLab learning notes] an example to understand Frenet Trajectory Generation

  The following examples are the official examples of MathWorks. I have translated and sorted out the relevant knowledge points and recorded the learning notes.   Original link: https://ww2.mathworks.cn/help/nav/ref/referencepathfrenet.html Generate Alternative Trajectories for Reference Path Use Frenet coordinates to generate alterna ...

Added by samtwilliams on Wed, 02 Feb 2022 22:23:04 +0200