generate increasing exponential series for 10 numbers with sum equal 1.
3 views (last 30 days)
Show older comments
I want to generate 10 numbers in increasing manner such that their sum equals 1.. for example; .1+.1+.1+.2+.2+.3=1 in such a way I want 10 number which increase exponentially and sum equal 1... I tries geometric regression but it didnt work
Accepted Answer
Guillaume
on 10 Sep 2018
v = rand(1, 10);
v = sort(v) / sum(v)
If that's all you're after...
0 Comments
More Answers (0)
See Also
Categories
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!