computing minimum for each rows

조회 수: 2 (최근 30일)
Tino
Tino 2019년 5월 30일
댓글: Tino 2019년 5월 30일
Hi
I have a data called D consisting of three column
D =
1 2 4
7 9 0
6 8 9
2 9 0
7 6 5
I want to get the minimun number of each rows
for instance the answer for above D will give
1
0
6
0
5
The code must be able to n number of rows
Thanks in advance
Tino

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 5월 30일
편집: KALYAN ACHARJYA 2019년 5월 30일
mat1=sort(D')
result=mat1(1,:)';
Output
result =
1
0
6
0
5
There is more smart way please check this function also

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by