How to generate random data which follows a specific pattern ?
Afficher commentaires plus anciens
I want to generate yearly Outdoor temperature data with 1 hr interval and having seasonal variation ( Summer, Winter ). There will be 8760 timesteps of data.In summer Temperature will vary around the range of 25-35 degree and In winter it will vary around -10 to 10 degree. I am a beginner in Matlab. Any suggestion or code reference would be very helpful
Réponse acceptée
Plus de réponses (1)
KSSV
le 6 Fév 2017
There is a inbuilt command rand in matlab which generates Uniformly distributed random numbers between 0 and 1. doc rand. To generate random numbers in a given range [a,b]. You may follow:
a = 50;
b = 100;
r = (b-a).*rand(1000,1) + a;
2 commentaires
S M Shahnewaz Siddiquee
le 6 Fév 2017
Modifié(e) : S M Shahnewaz Siddiquee
le 6 Fév 2017
KSSV
le 6 Fév 2017
Numbers follow uniform distribution. what pattern you are expecting?
Catégories
En savoir plus sur Random Number Generation dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!