Picking random values from an array.

4 views (last 30 days)
Donne
Donne on 5 Dec 2022
Commented: Rik on 5 Dec 2022
I extracted some data for a work using MATLAB and plot these values, but because the number of values in the array were many, my model had lots of noise in it. So i would to know how I could select just a few points which are spread along the plot from the start through to the end.

Answers (1)

Rik
Rik on 5 Dec 2022
k=round(numel(Data)/100);
Data(sort(randperm(end,k))
This will give you a random sample of your vector.
  2 Comments
Rik
Rik on 5 Dec 2022
You're welcome.
If this solved the problem, please consider marking it as accepted answer.

Sign in to comment.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!