摘要: Cross Product These are two vectors: They can be multiplied using the "Cross Product" (also see Dot Product) The Cross Product a × b of two vectors is 阅读全文
posted @ 2016-11-22 00:49 PACHEL35 阅读(332) 评论(0) 推荐(0) 编辑
摘要: These are vectors: They can be multiplied using the "Dot Product" (also see Cross Product). Calculating You can calculate the Dot Product of two vecto 阅读全文
posted @ 2016-11-22 00:47 PACHEL35 阅读(639) 评论(0) 推荐(0) 编辑
摘要: 天线数据长度: 4*14*9664*4 = 2164736 信道估计长度: 614400 均衡: 12*1200*4 = 57600 阅读全文
posted @ 2016-11-21 14:54 PACHEL35 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 数值范围转换 243=0xF3 是在寄存器显示的值实际上这是一个负值那么真实的整数值是 0xF3-256 = 243-256=-13 算法定点化 有符号数扩展 移位先后造成比特误差精度问题 饱和问题 阅读全文
posted @ 2016-11-21 11:28 PACHEL35 阅读(409) 评论(0) 推荐(0) 编辑
摘要: 1、#ifdef 实现 与 或#if (defined SIMULATION) && (defined _FMM_LOG)#endif #if (!defined A) || (!defined B) //... #endif 阅读全文
posted @ 2016-11-21 09:42 PACHEL35 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 目前使用的机器都是使用字节BYTE来存储的。 对于跨越多字节的对象,必须搞清楚两个规则: 这个对象的地址是什么 在存储器中如何按照这些字节的存放的书序 对于一个整型对象 a=0x12345678,一共有四个字节。假设存放在地址0x00002000中,于是,在0x2000开始放0x78还是0x12就是 阅读全文
posted @ 2016-11-21 09:31 PACHEL35 阅读(4426) 评论(0) 推荐(0) 编辑
摘要: 1、函数与变量的 Section Attribute 上面代码,把函数foobar放置在段 .CSECT mmm中。注意,指名段是放在函数的外部声明里的。多重属性的指定,可以通过逗号来分隔开, 2、函数的 Interrupt Attribute把函数定义为软中断或者可屏蔽中断函数。这种函数不能被其他 阅读全文
posted @ 2016-11-21 09:07 PACHEL35 阅读(681) 评论(0) 推荐(0) 编辑
摘要: 为了避免各种问题,请使用最新的2.7.13安装文件 1、先设置好环境变量 在path变量中设置好以下路径: C:\Python27\Scripts C:\Python27 2、大部分报错问题都是因为库与库之间存在依赖关系 matplotlib依赖dateutil和pyparsing,如果Python 阅读全文
posted @ 2016-11-21 00:18 PACHEL35 阅读(12022) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> 0. 文件打开关闭FILE *fp = fopen("C:\\a.dat","wb+");fclose(fp); 1. 二进制文件读写fread(pdBuf, 1, n, fp);fwrite(pdBuf, 1, n, fp); 2. 文本文件格式化字符串读写fs 阅读全文
posted @ 2016-11-21 00:02 PACHEL35 阅读(338) 评论(0) 推荐(0) 编辑
摘要: 1. 保活防掉线选项 -> 会话选项 -> 终端勾选 自动重新连接, 发送协议 NO-OP 每60秒 2. 拷贝与粘贴的设置选项 -> Global options -> Terminal -> Mouse 选中Copy on select 和 Paste on midlle button另外可以设 阅读全文
posted @ 2016-11-20 23:42 PACHEL35 阅读(2303) 评论(0) 推荐(0) 编辑