Problem with index function in symsum function

3 views (last 30 days)
I was trying to code a random number generator that could generate random numbers on the interval [a,b] and thinking that having more random iterations would make this random number more random. And by summing up al these numbers and dividing them to the number n, I am aiming to make a better number generator (probably this is problematic in terms of probability to think like this way). However when using symsum function with the index function in my case x(k,1) the following error occurs:
I tried troubleshooting by changing places of function, index and the interval inside symsum function or adding paranthesis and removing them, however as expected the problem couldn't be solved. What am I doing wrong here? Thanks for your help.
  4 Comments
Torsten
Torsten on 27 Jan 2022
Edited: Torsten on 27 Jan 2022
Since no symbolic variables are involved, why do you use symsum ?
You must use "sum" instead.
Ege Artan
Ege Artan on 27 Jan 2022
Thanks seems like I still have lots to learn!

Sign in to comment.

Answers (1)

Rishabh Singh
Rishabh Singh on 3 Feb 2022
Hi,
I am unable to understand the idea of better number generator. But in terms of probability generating random numbers and taking their average will change the probability distribution, which for "rand" function in "Uniform Distribution". When taking average you will output random number near to (a+b)/2 with much greater probability compared to other random numbers. You can confirm this by increasing the value of "c" and obverving the value of "x",
a = 3;
b = 16;
c = 78;
x = a + (b-a)*rand(c,1);
x = sum(x)/c;
Hope this helps.

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!