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

Hon Wai Wayne Lee
Hon Wai Wayne Lee 2013년 4월 22일
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