MATLAB: Time series fatigue test

matlab functiontime

Good day everyone,
excuse me but i am very new to matlab..
I am generating a time series, to perform a fatigue test.

Best Answer

You can follow this example:
lb = 5; % lower bound, ymin
ub = 10; % upper bound
N = 1000; % num samples
vals = rand(1,N).*(ub-lb) + lb;
Related Question