generating random signal

how do i write a simple matlab code that generates a random signal with amplitude varying from 0 to 200 and has length of 2000??
thanks in advance :)

 Risposta accettata

Andrei Bobrov
Andrei Bobrov il 30 Nov 2011
please read about function rand
in your case:
out = 200*rand(2000,1);

Più risposte (2)

Walter Roberson
Walter Roberson il 30 Nov 2011

1 voto

rand() returns numbers in the range 0 to 1. You can scale and translate those number as needed. You can tell rand() how many values you want to generate.

Categorie

Scopri di più su Random Number Generation in Centro assistenza e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by