how can ı find min value using for loop in matrice
20 次查看(过去 30 天)
显示 更早的评论
回答(2 个)
Deepak Gupta
2020-4-23
编辑:Deepak Gupta
2020-4-23
You really don't need to use for loop in matlab to find min term.
If you have a matrix A, then min(A) will give you minimum value in matrix.
1 个评论
Deepak Gupta
2020-4-23
If you really need for loop then:
minTerm = A(1, 1);
for i= 1:size(A, 1)
for j = 1:size(A, 2)
if(A(i, j)<minTerm)
minTerm = A(i, j);
end
end
end
Prasad Reddy
2020-4-23
clc
clear all
A=[2,4,5,7,4,3,5,6] % creating our required vector
l=length(A) % finding the length of our vector
min=A(1); % assain the first value of our vector to min
for i=1:1:l
if A(i)<min % from then onwards check each element and
min=A(i) % if the element is less than the value stored in min
end % assain new value
end
min
1 个评论
vinita
2022-10-29
thank u. but if i have 64x64 matrics then how we calculate the minmum value using loop.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!