How I can create this matrix?

1 次查看(过去 30 天)

采纳的回答

Stephen23
Stephen23 2021-8-6
X = A(:,5)<1;
A(X,:) = []

更多回答(1 个)

M.B
M.B 2021-8-6
I just translated what you described. Next time try something on your own. Then ask for help when you are stuck. Learning comes with practice.
tempA = A;% play with a temorary
deletthisrow = [];
for iter = size(tempA, 1):1
if tempA(iter, 5)<1
tempA(iter, :) = [];
end
end

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by