How can I generate voctors of double values from another bector?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello everyone, My issue here is , I have a vector of double values v1=[12,3459,450,......,567], I want to generate many vectors that contains either zero or values from v1 that are chosen randomly,and the length of new vector is m=120 for example
Thank you
4 Kommentare
Steven Lord
am 27 Apr. 2021
Do you want to select elements of v1 with or without replacement?
How do you want to add 0 values to the result?
- Each element of the result is either the corresponding element of v1 or is 0. If this option, with what probability do you want to replace the element of v1 with 0?
- Even if 0 is not an element of v1, it is a candidate to be selected for one element of the result, with an equal probability of being selected as any element of v1.
- Select some number of elements of v1. Add enough 0 values to have 120 total elements, then shuffle the 120 elements.
- Some other approach (if so what?)
Antworten (1)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices 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!