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

 Risposta accettata

Jan
Jan il 22 Apr 2013
Modificato: Jan il 22 Apr 2013

0 voti

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.

Più risposte (1)

per isakson
per isakson il 22 Apr 2013
Modificato: per isakson il 22 Apr 2013

0 voti

1 Commento

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

Accedi per commentare.

Categorie

Community Treasure Hunt

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

Start Hunting!

Translated by