how to generate data from model
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have to genarate x data which follows U(0,4pie) distribution how can i generate it ?
and how to generate data for y which follows U(0,10)
0 Kommentare
Antworten (1)
Sujay C Sharma
am 15 Jun. 2020
Hi,
You can use the random function with additional parameters specifying the distribution and its parameters along with the size of the data to be generated. Here is an example of how you can create a 2 X 3 matrix which follows U(0,4*pi):
X = random('Uniform',0,4*pi,2,3)
0 Kommentare
Siehe auch
Kategorien
Mehr zu CubeSat and Satellites finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!