10 2011 档案
利用VS2010调用Excel的宏
摘要:Excel中的macro已经录制好,如何通过VS完成automation呢?这是昨天师姐给我的一个小问题。之前对于这方面没有任何经验,昨晚在网上好好研究了一番,终于发现了解决问题的方法,无奈自己的VBA编程和Windows编程现在都处于小白水平,现在虽然能够解决问题了,有些细节还是不能理解掌握。菜不要紧,开始工作了是王道。 如何在VS2010中调用Excel的宏呢?方法的原理是使用Microso... 阅读全文
posted @ 2011-10-31 22:21 bovine 阅读(3808) 评论(0) 推荐(0)
Windows Live Writer Test
摘要:this is a test 阅读全文
posted @ 2011-10-31 22:17 bovine 阅读(146) 评论(0) 推荐(0)
MATLAB的分数和小数
摘要:今天在使用MATLAB的过程中遇见一个诡异的问题。首先我定义一个矩阵a。>> a = [2 0 5 6;1 3 3 6;-1 1 2 1;1 0 1 3 ]a = 2 0 5 6 1 3 3 6 -1 1 2 1 1 0 1 3然后求逆。>> b = inv(a)b = 0.4444 0.3333 -1.0000 -1.2222 0.0370 0.4444 -0.3333 -0.8519 0.3333 0 0 -0.6667 -0.2593 -0.1111 0.3333 0.9630注意到结果是小数,我想让结果是分数。上网得知命令rats可以实现这个功能。>> 阅读全文
posted @ 2011-10-24 16:09 bovine 阅读(6270) 评论(0) 推荐(0)
Cyclic prefix
摘要:接触循环签注这个概念已经有一段时间,但是一直没有去思考过。今天想整理一下。维基百科里面讲得比较清晰。Intelecommunications, the termcyclic prefixrefers to the prefixing of asymbolwith a repetition of the end. Although the receiver is typically configured to discard the cyclic prefix samples, the cyclic prefix serves two purposes.As aguard interval, i 阅读全文
posted @ 2011-10-12 19:53 bovine 阅读(1777) 评论(0) 推荐(0)
MATLAB out of memory
摘要:运行LTE仿真平台的时候遇到out of memory的问题,上网学习了一会,找到了一些解决方法,这里总结一下。Out of memory的产生,总的来说,是由于程序运行过程中不断对内存进行读写,造成连续的内存段变少。这里主要学习一些非程序改进的方法,通过对系统的设置解决这个问题。1. 如何在MATLAB中查看可用内存?在MATLAB的command window中输入feature ('memstats'),可以得到如下的结果: Physical Memory (RAM): In Use: 1499 MB (5dba... 阅读全文
posted @ 2011-10-11 10:27 bovine 阅读(13865) 评论(0) 推荐(1)