Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Finding the first element of a 1-D array that yields a negative result.
조회 수: 1 (최근 30일)
이전 댓글 표시
I then want to assign this element of the array to a different variable.
댓글 수: 0
답변 (1개)
Kaushik Lakshminarasimhan
2018년 1월 19일
x = normrnd(0,1,[1,20]); % generate 20 random numbers
y = x(find(x<0,1)); % assign the first negative random value to y
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!