Filter löschen
Filter löschen

How create a random sequence

7 Ansichten (letzte 30 Tage)
pizarro
pizarro am 24 Nov. 2013
Kommentiert: pizarro am 24 Nov. 2013
Hi, I want to create a random sequence of 10 elements with values +- 2.How can i do it?
BR,
José Manuel.
  1 Kommentar
the cyclist
the cyclist am 24 Nov. 2013
Do you want only values of -2 and 2, or continuous values uniformly in between, like -1.732 and 0.365?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

the cyclist
the cyclist am 24 Nov. 2013
Bearbeitet: the cyclist am 24 Nov. 2013
Just -2 and 2:
R = 4*round(rand(1,10)) - 2;
Continuous:
R = 4*rand(1,10) - 2;
  1 Kommentar
pizarro
pizarro am 24 Nov. 2013
Thank you very much, I´m starting to study Matlab from myself.
BR,
José Manuel.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by