ad936x-filter-wizard

MATLAB-based FIR filter design
授权协议 View license
开发语言
所属分类 应用工具、 科研计算工具
软件类型 开源软件
地区 不详
投 递 者 赖翰
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

MATLAB-based FIR filter design for the AD936x that requires MATLAB 2015b orlater, older versions are unsupported.

User documentation is available on the ADI wiki.

  • 结构、辅助功能、接收链、发送链、滤波器 : AD9361 介绍(上) 增益控制、时钟和PLL、ENSM : AD9361 介绍 (中) 校准、数据接口 (CMOS) : AD9361 介绍 (下) 数据接口(LVDS)、 SPI和附加接口信号 : AD9361 介绍 (终) MGC、Slow attack AGC、Fast attack AGC 详见 : AD9361 补充(上) RSSI、发射功

 相关资料
  • 如果要对每次请求都进行过滤,那么可以采用Filter来进行,Filter是一个接口,接口定义如下: type Filter interface { Do(http.ResponseWriter, *http.Request) bool } 如果返回true,则filter不会中断会继续执行下去,如果返回false,则会中断执行,输出到浏览器。 系统已经内置了一个LoginFilter,可以

  • 描述 (Description) Javascript数组filter()方法创建一个新数组,其中包含通过所提供函数实现的测试的所有元素。 语法 (Syntax) 其语法如下 - array.filter(callback[, thisObject]); 参数细节 (Parameter Details) callback - 用于测试数组的每个元素的函数。 thisObject - 执行回调时用

  • 一个过滤器函数,它返回一个从零开始的数组,该数组包含基于特定过滤条件的字符串数组的子集。 语法 (Syntax) Filter(inputstrings,value[,include[,compare]]) 参数描述 (Parameter Description) Inputstrings - 必需参数。 此参数对应于要搜索的字符串数组。 Value - 必需参数。 此参数对应于要对input

  • filter()方法创建一个新数组,其中包含所有传递由提供的函数实现的测试的元素。 语法 (Syntax) array.filter(callback[, thisObject]); 参数 (Parameters) callback - 测试每个元素的函数。 thisObject - 执行回调时用作此对象的对象。 返回值 (Return Value) 返回创建的数组。 例子 (Example)

  • filter 仅仅发出 Observable 中通过判定的元素 filter 操作符将通过你提供的判定方法过滤一个 Observable。 演示 let disposeBag = DisposeBag() Observable.of(2, 30, 22, 5, 60, 1) .filter { $0 > 10 } .subscribe(onNext: {

  • Creates a new sequence whose values are the elements of this sequence which satisfy the specified predicate. Signature Sequence.filter = function(filterFn) { /*...*/ } Sequence.filter = function filte