Borrar filtros
Borrar filtros

How do you generate data at different sampling rates?

1 visualización (últimos 30 días)
karen
karen el 11 de Jun. de 2013
Hello. I know how to generate data using the function Randi but I don't know how to run, lets say, three data sets all sampling at different times.

Respuestas (1)

Azzi Abdelmalek
Azzi Abdelmalek el 11 de Jun. de 2013
Define your time vector
ts1=0.1;
ts2=0.01;
t1=0:ts1:10*ts1;
t2=max(t1)+ts2:ts2:max(t1)+10*ts2;
t=[t1 t2]
% Then generate your vector y
y=randi(numel(t),1,numel(t))
plot(t,y)
  3 comentarios
Azzi Abdelmalek
Azzi Abdelmalek el 11 de Jun. de 2013
Why tic function?
karen
karen el 11 de Jun. de 2013
It was out of curiosity.

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by