3年前的一个深夜,看着queens的温布利演唱会,以为那是绝唱。Freddie Mercury的声音充满着奇幻的色彩。
昨晚,深夜,看着MJ的That is it。再一次被震撼,这些年歌听的很多,不过给自己震撼的感觉没有比这两个更强悍了。
The King of POP and queens. I love you,always.
Entries from 十二月 27th, 2009
King and Queens
十二月 27th, 2009 1 Comment
Tags: pop
HALTON序列
十二月 12th, 2009 No Comments
function result = halton( m,base,seeder ) %生成HALTON序列
% Check inputs if nargin < 3 seeder = 0; if nargin < 2 error(‘MATLAB:Halton:NotEnoughInputs’,… ‘Not enough input arguments. See Halton.’); end end [...]
Tags: CODE · halton sequence · MATLAB
Generating Correlated Random Numbers
十二月 12th, 2009 No Comments
This article describes common methods that are used in generating correlated random numbers.
Contents
1 Generating two sequences of correlated random numbers
1.1 Before and after correlating
2 Generating multiple (more than two) sequences of correlated random variables
2.1 Example using a Cholesky decomposition 2.2 Example using a Eigenvector decomposition
3 Example Matlab code
Generating two sequences of [...]
Tags: random variable
MATLAB多线程实时工具——Timer对象
十二月 8th, 2009 No Comments
MATLAB先天的多线程残疾,给编写实时程序带来了致命的打击。一般情况只能按堆栈的形式,排队执行Matlab命令,可是无巧不成书,有时我们偏偏需要进行多线程和实时编程。 比如: 1.我想实时更新一个电子表的时间,也就是每1s读取一次系统时间或者自动加1s 2.我需要这个程序在10s后终止 明显这些需要,使用一般的Matlab编程是没法或者说很难实现的。 还好Matlab自知在这方面亏欠大家太多,提供了唯一一个多线程的实现方法——Timer对象 一、Timer对象的创建 T = timer T = timer(‘PropertyName1′, PropertyValue1, ‘PropertyName2′, PropertyValue2,…) 括号中的参数可以在创建Timer是给出,也可以通过以后的set/get命令设置和读取 二、Timer属性参数 [...]
Tags: timer






