Tagged Questions
-1
votes
1answer
372 views
Matlab loops for a function
I am trying to make a loop to redo a Matlab function 1000 times. Here's the program
d = unifrnd (0,10,[10,1]);
c = d.^(-2);
a = round(unifrnd(0,1,[1,10]);
e = a*c
btotal = e+1
SIR = 1/btotal
What I ...