필터 지우기
필터 지우기

How can I find numbers>30 in 810*1 matrix?

조회 수: 1 (최근 30일)
Chris
Chris 2022년 9월 6일
답변: Star Strider 2022년 9월 6일
How can I find numbers>30 in 810*1 matrix?

답변 (1개)

Star Strider
Star Strider 2022년 9월 6일
This is similar to the approach with the months —
V = randi(50, 10, 1)
V = 10×1
41 19 18 21 31 40 33 35 38 8
Vgt30 = V(V>30)
Vgt30 = 6×1
41 31 40 33 35 38
.

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by