阵列信号处理知识点汇总

  • Post author:
  • Post category:其他

推荐书籍: 《阵列信号处理及MAATLAB实现》张小飞  电子工业出版社 2015年 《空间谱估计理论与算法》王永良  陈辉 彭应宁 万群  清华大学出版社 2004年 《自适应阵列处理》王永良 李荣锋 丁前军  清华大学出版社 2009年 《MATLAB在语音信号分析与合成中的应用》宋知用  北京航空航天大学出版社  2013年 《麦克风阵列信号处理》Jacob Benesty(加拿大),邹霞 …

继续阅读 阵列信号处理知识点汇总

Making up VMs from Many Weak Nodes of Edge Computing

  • Post author:
  • Post category:其他

In last blog we have discuss virtualization and using virtual machine to provide services for users. However, differences between cloud computing and edge computing make it impossible to apply theorie…

继续阅读 Making up VMs from Many Weak Nodes of Edge Computing

将数组转换为IntPtr

  • Post author:
  • Post category:其他

//第一种,使用不安全的代码块来访问直接指向字节数组的指针。 static IntPtr ArrayToIntptr(byte[] source) { if (source == null) { return IntPtr.Zero; } unsafe { fixed (byte* point = source) { IntPtr ptr = new IntPtr(point); return p…

继续阅读 将数组转换为IntPtr

linux软硬链接 计数,深入理解Linux的软链接和硬链接

  • Post author:
  • Post category:linux

一直没有深入了解过链接这块的知识,昨晚有个朋友问我这问题,一下子激发了我的兴趣。今天早上过来看了看鸟哥的书然后在stackoverflow上找了一番,感觉自己现在的理解到位了,起码这样理解容易记忆。先来做个实验,在我们的用户目录下,建立一个测试文件夹,然后新建一个文件,并创建这个文件的软链接和硬链接。如下: vim file1 #新建文件 ln -s file1 file1.soft #软链接 l…

继续阅读 linux软硬链接 计数,深入理解Linux的软链接和硬链接

统计 Golang 项目的测试覆盖率

  • Post author:
  • Post category:golang

我们的项目主要基于 Golang 开发,公司要求统计测试覆盖率。所以,我们摸索了一下在 Golang 下如何统计整个项目得测试覆盖率: 以下内容均基于 Go SDK 1.10.1 获得,不保证可以向下兼容 先直接上结果: go test -coverpkg=./... -coverprofile=coverage.data -timeout=5s ./... go tool cover -html…

继续阅读 统计 Golang 项目的测试覆盖率

hyperf框架QueryList(phpQuery)

  • Post author:
  • Post category:php

安装QueryList,使用Composer安装 执行Composer安装命令: composer require jaeger/querylist:V3.2.1 在项目中使用QueryList   (use QL\QueryList)直接引用 <?php declare(strict_types = 1); namespace App\Controller; use Hyperf\View…

继续阅读 hyperf框架QueryList(phpQuery)

gentoo installation

  • Post author:
  • Post category:其他

主要参考: http://www.gentoo.org/doc/zh_cn/handbook/handbook-amd64.xml?part=1&chap=6 1. prepare network connection using ultra iso write gentoo-mini*.iso to flash disk boot using flash disk # emacs /et…

继续阅读 gentoo installation

javascript本地JSON数据调用方法(AJAX)

  • Post author:
  • Post category:java

var json window.onload = function () { //本地json数据文件地址 var url = "js/Plugin.json" var request = new XMLHttpRequest(); request.open("get", url); request.send(null); request.onload = function () { if (re…

继续阅读 javascript本地JSON数据调用方法(AJAX)

jeeplus框架简介

  • Post author:
  • Post category:其他

一、性质 jeeplus快速开发框架是一款 收费开源 的商业框架,采用license进行 授权管理 ,商业使用请购买社区授权 二、特点 JeePlus是一款基于代码生成器的JAVAEE快速开发平台,可以帮助解决java项目中 绝大部分的的重复工作 ,让开发者更多关注业务逻辑。 Jeeplus支持单表,主附表,一对一,一对多,多对多,左树右表的直接生成 ,只需简单配置,就可以生成数千行高质量代码,5…

继续阅读 jeeplus框架简介

WPF中DataGrid的使用

  • Post author:
  • Post category:其他

DataGrid是WPF中的数据显示控件,相当于Winform中的DataGridView。但是两者之间的用法确存在一些差异。在文档中,如果利用两者的不同之处可以更加清楚的描述好DataGrid的使用,我将采用该种方法。好了我们首先看一下如何为DataGrid指定数据源吧! 我们知道在Winform中DataGridView的数据源可以是DataTable,DataView,List<T&g…

继续阅读 WPF中DataGrid的使用