
Matlab使用心得
chy19890820
这个作者很懒,什么都没留下…
展开
-
Matlab中set函数的用法
在Matlab中输入help set 点击gca选项GCA Get handle to current axis. H = GCA returns the handle to the current axis in the current figure. The current axis is the axis that graphics commands lik原创 2013-04-08 17:03:28 · 64144 阅读 · 0 评论 -
Matlab中ones()用法
ONES Ones array. ONES(N) is an N-by-N matrix of ones. ONES(M,N) or ONES([M,N]) is an M-by-N matrix of ones. ONES(M,N,P,...) or ONES([M N P ...]) is an M-by-N-by-P-by-... array o原创 2013-04-08 17:33:42 · 204248 阅读 · 1 评论 -
Matlab中pause函数用法
一般情况下pause(a)表示程序暂停a秒后继续执行,但有时候也存在这种情况,程序中只有pause;并没有参数a,这样的意思是程序暂停,按任意键程序继续执行。原创 2013-04-08 17:08:57 · 93225 阅读 · 0 评论 -
详解randn函数及 randn('state')
Y=randn(n) 生成一个n×n随机矩阵,其元素服从均值为0,方差为1的标准正态分布。 Y=randn(m,n) 生成m×n随机矩阵,其元素服从均值为0,方差为1的标准正态分布。因此randn函数常用来产生高斯白噪声信号 Y=randn(size(A)) 生成一个与A维数相同的随机数组,其元素服从均值为0,方差为1的标准正态分布。 Y=r原创 2013-04-17 10:47:31 · 10528 阅读 · 0 评论