随笔分类 -  (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 阅读全文
posted @ 2021-11-02 08:10 dong1 阅读(63) 评论(0) 推荐(0) 编辑
摘要: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 阅读全文
posted @ 2021-10-21 01:57 dong1 阅读(56) 评论(0) 推荐(0) 编辑
摘要:Tilt Angle Visualization With Edison, Accelerometer and Python I recently bought an Intel Edison arduino board. After blinking the on-board LED, I wan 阅读全文
posted @ 2021-03-04 15:38 dong1 阅读(125) 评论(0) 推荐(0) 编辑
摘要:webrtc-audioproc-master/modules/audio_processing/utility/fft4g.c /* * http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html * Copyright Takuya OOURA, 1996-2 阅读全文
posted @ 2020-12-22 09:03 dong1 阅读(163) 评论(0) 推荐(0) 编辑
摘要:webrtc-audioproc-master/modules/audio_processing/utilityring_buffer.c /* * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. * * Use 阅读全文
posted @ 2020-12-22 08:58 dong1 阅读(306) 评论(0) 推荐(0) 编辑
摘要:WebRTC AudioProc (AEC, VAD, NS...) https://github.com/DoubangoTelecom/webrtc-audioproc build example: ./autogen.sh ./configure make 阅读全文
posted @ 2020-12-21 16:54 dong1 阅读(240) 评论(0) 推荐(0) 编辑
摘要: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 阅读全文
posted @ 2020-11-26 00:56 dong1 阅读(118) 评论(0) 推荐(0) 编辑
摘要:16. bit bits.c /* * Copyright (C) 2018 Swift Navigation Inc. * Contact: Swift Navigation <dev@swiftnav.com> * * This source is subject to the license 阅读全文
posted @ 2020-10-11 11:28 dong1 阅读(118) 评论(0) 推荐(0) 编辑
摘要:混音算法 实话实说,这个混音算法是我从网上找到的,不过效果还是挺不错的,公式就是 C = A + B - (A * B >> 0x10) A和B就是两路不同的音频数据,C就是混音后的音频数据,当然,处理后,还需要对C进行防止数据溢出的处理,否则,可能会有爆音。 如果是16bit音频数据,就是: if 阅读全文
posted @ 2019-07-24 02:17 dong1 阅读(1414) 评论(0) 推荐(0) 编辑
摘要:list.cpp #include <cstring> #include <iostream> #include <algorithm> #include <list> typedef struct item{ char id[64]; char ip[64]; int port; int stat 阅读全文
posted @ 2019-07-02 11:49 dong1 阅读(512) 评论(0) 推荐(0) 编辑
摘要:The library you create when you are done with Learn C The Hard Way http://c.learncodethehardway.org/ https://github.com/zedshaw/liblcthw 阅读全文
posted @ 2018-10-25 10:19 dong1 阅读(1270) 评论(0) 推荐(0) 编辑
摘要:1)线性表 //顺序存储下线性表的操作实现 #include <stdio.h> #include <stdlib.h> typedef int ElemType; /*线性表的顺序存储(静态) struct List { ElemType list[MaxSize]; int size; }; * 阅读全文
posted @ 2016-12-25 16:51 dong1 阅读(602) 评论(0) 推荐(0) 编辑
摘要: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 阅读全文
posted @ 2016-10-20 19:58 dong1 阅读(1196) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示