Unknown Matlab code meanings

for Matlab, do you know any of the following or know where I can find out about them? I searched on the web and couldn't find out what they mean
Xtemp
Winc
n_bin = 200
iTime
iPath
disp(sprintf('mean: %.5g\n',stndrd_dev));
strm = RandStream('mt19937ar','Seed',575)
@(t,X)
tInsert
rndmat
likeve
My version of matlab is 2010 and that maybe why I can't find these in the matlab toolbox doc
thank you

 采纳的回答

Jan
Jan 2013-4-22
编辑:Jan 2013-4-22

0 个投票

The question cannot be answered completely:
  1. XTemp, Winc, iTime, iPath, tInsert, rndmat, likeve and thank you could be variables or functions.
  2. The variable n_bin is set to 200.
  3. You can find out the effects of the disp() command easily: Simply let it run and see the output to the command window.
  4. @(t,x) is the header of an anonymous function. It cannot be explained in detail as long as you do not post the complete line.
  5. strm is set to the a reandom stream object, which means, that you initialize a random number generator.
All you ask for is explained exhaustively in the Getting Started chapters of the documentations. You cannot use Matlab efficiently without reading the manuals. It wouldn't be efficient, if we post a rephrased version of all, you can find there already.

更多回答(1 个)

per isakson
per isakson 2013-4-22
编辑:per isakson 2013-4-22

0 个投票

1 个评论

I didn't understand what mt19937ar was and what the different values of the seed mean

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by