Fill a vector with specific values from a matrix

Hello, I'd like to identiy which values are greater than 4 in matrix "a" and fill those values into matrix "b". The code I tried was this, but it didn't work.
a=[1 4 23 5
5 2 7 8
3 4 6 3];
for i=1:size(a,1)
for j=1:size(a,2)
if a(i,j) > 4
b(:)=a(i,j)
end
end
end

 채택된 답변

Stephen23
Stephen23 2021년 11월 6일
a = [1,4,23,5;5,2,7,8;3,4,6,3];
b = a(a>4)
b = 6×1
5 23 7 6 5 8

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Adaptive Control에 대해 자세히 알아보기

제품

릴리스

R2021b

질문:

2021년 11월 6일

답변:

2021년 11월 6일

Community Treasure Hunt

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

Start Hunting!

Translated by