Question about random generator values.

if i input for example
B=randperm (43)
how can i show an array having 2 or 3 numbers only from the values of randperm(43)?
example:
A1 3 27 40
A2 30 25
A3 6 12 17
and so on..

답변 (1개)

Image Analyst
Image Analyst 2012년 9월 30일

0 개 추천

A1 = B(1:3);
A2 = B(1:2);
etc.

댓글 수: 2

Portgas Ace
Portgas Ace 2012년 9월 30일
cant do that, values in B() should also be random, either 3 values or 2.
B(1:round(rand)+2)

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Cluster Analysis and Anomaly Detection에 대해 자세히 알아보기

질문:

2012년 9월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by