随笔分类 - (o) Algorithm
摘要:The Euclidean Algorithm and the Extended Euclidean Algorithm On this page we look at the Euclidean algorithm and how to use it. We solve typical exam
阅读全文
摘要:Kalman filtering Date: 2018-07-06 (last modified), 2006-07-24 (created) This is code implements the example given in pages 11-15 of An Introduction to
阅读全文
摘要:Tilt Angle Visualization With Edison, Accelerometer and Python I recently bought an Intel Edison arduino board. After blinking the on-board LED, I wan
阅读全文
摘要:webrtc-audioproc-master/modules/audio_processing/utility/fft4g.c /* * http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html * Copyright Takuya OOURA, 1996-2
阅读全文
摘要:webrtc-audioproc-master/modules/audio_processing/utilityring_buffer.c /* * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. * * Use
阅读全文
摘要:WebRTC AudioProc (AEC, VAD, NS...) https://github.com/DoubangoTelecom/webrtc-audioproc build example: ./autogen.sh ./configure make
阅读全文
摘要:pjproject-2.10\pjlib-util\include\pjlib-util\base64.h /* $Id$ */ /* * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com) * Copyright (C) 2003-2
阅读全文
摘要:16. bit bits.c /* * Copyright (C) 2018 Swift Navigation Inc. * Contact: Swift Navigation <dev@swiftnav.com> * * This source is subject to the license
阅读全文
摘要:混音算法 实话实说,这个混音算法是我从网上找到的,不过效果还是挺不错的,公式就是 C = A + B - (A * B >> 0x10) A和B就是两路不同的音频数据,C就是混音后的音频数据,当然,处理后,还需要对C进行防止数据溢出的处理,否则,可能会有爆音。 如果是16bit音频数据,就是: if
阅读全文
摘要:list.cpp #include <cstring> #include <iostream> #include <algorithm> #include <list> typedef struct item{ char id[64]; char ip[64]; int port; int stat
阅读全文
摘要:The library you create when you are done with Learn C The Hard Way http://c.learncodethehardway.org/ https://github.com/zedshaw/liblcthw
阅读全文
摘要:1)线性表 //顺序存储下线性表的操作实现 #include <stdio.h> #include <stdlib.h> typedef int ElemType; /*线性表的顺序存储(静态) struct List { ElemType list[MaxSize]; int size; }; *
阅读全文
摘要:17、作为对《C++17 STL cookbook》英文版的中文翻译。 https://github.com/xiaoweiChen/CPP-17-STL-cookbook 30 Seconds of C++ (STL in C++). Read More about 30C++ here 👉 h
阅读全文