霹雳在线
百度空间 | 百度首页 
 
文章列表
 
2009-12-15 15:50

(hplonline)2009.12.15


任何疑问,参考开篇雷语

被邀参加学院教学研讨会,

非常荣幸啊,有点受宠若惊的感觉。

自从前几回

 
2009-12-11 22:30
(hplonline)2009.12.11

freqz求时域序列的频响

help freqz看到的帮助说是求这种形式的频响
|                jw               -jw              -jmw
|         jw  B(e)    b(1) + b(
 
2009-12-09 20:51
(hplonline)2009.12.9

DFT实现简单的语音压缩

compress将声音文件origin.wav压缩为data.bin
decompress从data.bin中解压声音文件并播放

原理:
使用fft变换,保留低频部分到数据文件。
通过保留更窄的频段,获得高的压缩比;
通过间隔保留,获得成倍数提高的压缩比;
通过将数据保留为更小的存储单元,获得更高的压缩比。

本程序中,保留10到3000Hz的频段,
每间隔1个点进行保留,使用single存储。

 
2009-12-02 10:47
(hplonline)2009.12.2

some days ago ,
when foxmarks was walled from us ,
I signed in a QQ group aiming at Climbing Wall Techs .

Then I heard someone talking about free cn domain names yesterday .
It's a pity that all the chances have been taken .
So I woke up early this morning , and got one here .

try :

blog.hplonline.cn
 
2009-11-29 09:54
(hplonline)2009.11.29

Last night , my friends and I watched this movie ..
At first , we were only seeking for some thrilling things ,
but soon we felt overwhelmed by logic disorders .

A girl there was killed in her dreams ,
with her boyfriend beside her..
What's more surprising , she was pushed up on the wall ,
on the ceiling , throwed here and there ,
killed by a charp claw.
During the whole course , no body else showed up .

Then , the
 
2009-11-27 19:52

(hplonline)2009.11.27

今天做RIP实验的时候,
有幸观察到了一般人没RP观察到的现象,
把老师都冏了几分钟。
不过老师很强大,很快就反映过来了。
于是现在回来找RFC深挖一点。

RIP基本要点:

周期性地发送自己拥有的路由条目,
包含所有可达路由。

当有链路变化的时候,
发送触发更新的路由只包含有变动的路由。

因为路由响应报文的类型只有一种,
所以根据上面两点,从携带的条目数量,
来判断是不是有路由发生变化的触发更

 
2009-11-25 19:40

(hplonline)2009.11.24

由于手工填充TCP的实验报告太繁琐了,所以尝试写了一个程序。

 
2009-11-25 09:35
(hplonline)2009.11.25

box.net has been walled for nearly five month .
I didn't notice it has come back until I received a lot downloading notifications from it these days .
At the same time , my visitors increased rapidly although I have little works presented here recently .
This shows us that good resources are more charming than merely words.

Now , turn it into a local disk for easier use :

open cmd , type :
net use x:
 
2009-11-23 13:06

(hplonline)2009.11.23

BACKGROUND:

CLAPACK is efficient but hard to use.
We often care about a few of its returning values.
So I wrapped functions for eigenvectors , eigenvalues and solving linear equation here.
BTW , some basic operatio

 
2009-11-16 22:46
(hplonline)2009.11.16

之前安装VS08的时候选择完全安装,
主要是看着里面貌似带了个SQL SERVER 05 EXPRESS。
正要开工整东西的时候,发现
Start Menu\Programs\Microsoft SQL Server 2005
下面只有“配置工具”。
没有若干书上讲的SQL Server Management Studio。

估计是东西没有带全还是怎么的。。
只有想别的办法重新装一下。

由于ACAN同学耗费了一个周末,
下载各种版本的安装包,
以及重复安装三次,
最后进行简单配置并调通,
同时留下了宝贵的经验,
 
2009-11-15 16:07

(hplonline)2009.11.15

CLAPACK在上一篇介绍过了。
虽然这个库很强大,
但是参数太冏了,
看了很久才搞定。。

这篇讲解dgeev_函数的用法,
从这一个函数也可以认识LAPACK的一些习惯问题,
进而可以使用其他的函数。

》》特征值和特征向量

我们平时使用的一般都是右特征向量,定义为:
A*alpha = lamda * alpha
另外还有一种定义的

 
2009-11-15 14:55

(hplonline)2009.11.14

》》各种资料和笔记

主页
http://www.netlib.org/clapack/

一份简单的CLAPACK的hello world
http://www.cs.rochester.edu/~bh/cs400/using_lapack.html

vc6的工具包intro
http://www.netlib.org/clapack/readme.claw32
(这个可以直接用)

 
2009-11-15 11:33

(hplonline)2009.11.10

》》目的:

1.实现快速结果验证
2.方便的矩阵运算
3.方便的绘图模块

》》环境:

VISTA+MATLAB2009a+VC6.0

》》资料:

以安装路径“E:\Program Files\MATLAB\R2009a\”为例

MATLAB外部支持文件夹:
E:\Program Files\MATLAB\R2009a\extern
matlab自带的c例程:
E:\Program Files\MATLAB\R2009a\extern\examples\eng_mat

 
2009-11-09 20:27
(hplonline)2009.11.9

昨天观摩一个人用MATLAB和C混合编程,
看到了一个以前没用过的东西。。

#line

其作用是指示编译器改变当前的行号和文件名,用法为:

#line 2 "1.txt"
int a ;
f x ;

这样,当编译到f x;这句,出现错误,会提示:
1.txt(3) : error C2146: syntax error : missing ';' before identifier 'x'
1.txt(3) : error C2501: 'f' : missing storage-class or type specifiers
1.txt(3) : fatal error C1004: unexpected end of file foun
 
2009-11-08 17:34
(hplonline)2009.11.8

》》1.土地是不是商品?

根据现在人们把土地拿来交换的现实,土地应该是商品。

商品有两个本质属性,一是使用价值,二是价值。
价值即是凝聚其中无差别的人类劳动。

就像空气一样,不是人类生产的,不用来买卖,不是商品。

同理,土地不并非人类劳动所得,故不算是商品。

----

拿这个问题问了下老师,
说土地是“特殊”的商品。
于是该问题从名义上得到了解决。

“特殊”是一个很强大的解说方
 
     
 
 
顶置
 
 
 
 
 
 
 
     
 
文章分类
 
 
 
 
 
 
Ed(9)
 
Asm(5)
 
 
c/c++(41)
 
算法(39)
 
Vb(7)
 
Vc(19)
 
Scm(32)
 
Math(15)
 
 
 
 
     
 
关于我
 
feedskyfeedsky

通过在线阅读器直接订阅:
google reader订阅到鲜果订阅到抓虾
bloglines订阅到有道订阅到飞鸽
my yahooRojonetvibes
Newsgator订阅到QQ邮箱
   
 
个人档案
 
hplonline

上次登录:
10小时前
加为好友
 
   
 
订阅我的空间
 
已有人次访问本空间
 
订阅RSS  什么是RSS?

您也想拥有这样的空间?请点此申请。
     
 
最新评论
 
文章评论|照片评论

回复littkty:来我们这啊,请你吃,
 
回复hplonline:呵呵。。其实我也没有吃过。
 
回复littkty:呵呵,我一个都没吃过。。
 
喜欢葡萄味的!
 
回复ciscobk:嗯,学过
 
     
 
最近访客
 
 

IT_intheway

zihuacs

lixunliu

Hexec

Nehzilrz

李玲锋

Rickychenh

卡通BlueEye
     


©2009 Baidu