Select random numbers from a matrix

I want to select 100 random numbers from a certain column of a matrix. What should I do?

답변 (1개)

Image Analyst
Image Analyst 2017년 12월 16일

3 개 추천

Try this:
y = rand(1000, 3); % Some random data
% Select 100 numbers randomly from column 2:
selected = y(randperm(size(y, 1), 100), 2)

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

질문:

2017년 12월 16일

댓글:

2023년 3월 4일

Community Treasure Hunt

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

Start Hunting!

Translated by