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
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Adaptive Control 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!