필터 지우기
필터 지우기

Variable out_vec must be of size [1 3]. It is currently of size [1 20]. Check where the variable is assigned a value.

조회 수: 8 (최근 30일)
How can I reduce [1 20] size to a [1 3] size, without getting in the problem of needing only the number 1 10 and 20 in a vector row?

답변 (1개)

KSSV
KSSV 2021년 7월 27일
x = 1:20 ;
idx = sort(randperm(length(x),3)) ; % select randomly
x(idx)
ans = 1×3
3 6 8

카테고리

Help CenterFile Exchange에서 Problem-Based Optimization Setup에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by