会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
蒲公英的花
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
下一页
2019年5月28日
scip 练习2.18
摘要: (define (append a b ) (if (null? a )b (cons (car a) (append (cdr a) b)))) (define (reverse l) (append (reverse (cdr l)) (list (car l)) ))
阅读全文
posted @ 2019-05-28 22:31 蒲公英的花
阅读(82)
评论(0)
推荐(0)
编辑
2019年5月8日
c++获取时间戳
摘要: #include #include #include using namespace std; struct NowDate { char tmp0[16]; //年月日 char tmp1[16]; //时分秒 char tmp2[4]; //毫秒 }; NowDate getTime() { time_t timep; time (&tim...
阅读全文
posted @ 2019-05-08 19:52 蒲公英的花
阅读(1445)
评论(0)
推荐(0)
编辑
2019年4月30日
指针数组学习
摘要: int Rawdata_PreProcess(const void **in_frame, int n, int frame_size, void *out_frame) { const short **iframe = (const short **)in_frame; short *oframe = (short *)out_frame; int member = f...
阅读全文
posted @ 2019-04-30 13:42 蒲公英的花
阅读(151)
评论(0)
推荐(0)
编辑
2019年4月28日
Matlab小波工具箱的使用2
摘要: Matlab小波工具箱的使用2 (2011-11-11 09:32:57) 转载▼ Matlab小波工具箱的使用2 转载▼ http://blog.sina.com.cn/s/blog_6163bdeb0102dw7a.html#cmt_552345B5-7F000001-9F1973DD-944-
阅读全文
posted @ 2019-04-28 17:16 蒲公英的花
阅读(512)
评论(0)
推荐(0)
编辑
matlab 小波工具箱
摘要: wavemenu >wavelet >wavelet packet1-D Matlab小波工具箱的使用1 转载▼ Matlab小波工具箱的使用1 转载▼ http://blog.sina.com.cn/s/blog_6163bdeb0102dw6k.html 最近想尝试一下小波的用法,就这matla
阅读全文
posted @ 2019-04-28 17:03 蒲公英的花
阅读(1509)
评论(0)
推荐(0)
编辑
2019年4月26日
Qt 快捷键
摘要:
阅读全文
posted @ 2019-04-26 13:17 蒲公英的花
阅读(173)
评论(0)
推荐(0)
编辑
指针
摘要: int Rawdata_PreProcess(void * ptr_rawdata_addr_header[],int N,int data_length,void *out_data) { //int rpp_valid_flag = -1; int temp_length = 0; temp_length = data_length;//>>1; int32_t *...
阅读全文
posted @ 2019-04-26 13:11 蒲公英的花
阅读(139)
评论(0)
推荐(0)
编辑
低通滤波参数
摘要: //不会用的请参考我的博客: #include "stdafx.h" #include #include #include //必需包含下面两个头文件 #include "complex.h" #include double pi = 3.1415926535897932384626433832795; //20181224 typedef struct _C_double_c...
阅读全文
posted @ 2019-04-26 13:08 蒲公英的花
阅读(520)
评论(0)
推荐(0)
编辑
2019年4月24日
git 合并分支到master
摘要: git 合并分支到master 假如我们现在在dev分支上,刚开发完项目,执行了下列命令 git add .git commit -m ‘dev'git push -u origin dev然后我们要把dev分支的代码合并到master分支上 该如何? 首先切换到master分支上 git chec
阅读全文
posted @ 2019-04-24 17:12 蒲公英的花
阅读(591)
评论(0)
推荐(0)
编辑
2019年3月30日
matlab json文件解析 需要下载一个jsonlab-1.5
摘要: 数据文件如下: jsonlab-1.5 链接:https://pan.baidu.com/s/1dZBi5j04dMLW3huxY8uhvQ 提取码:o909 嗯,希望对有需要的有帮助!
阅读全文
posted @ 2019-03-30 11:06 蒲公英的花
阅读(1448)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
7
下一页
公告