How can I find min between three value in matlab?
조회 수: 68 (최근 30일)
이전 댓글 표시
Hello
I have three number, Could you help me how can I find min of them in fast way?
thanks
댓글 수: 0
채택된 답변
James Tursa
2014년 11월 6일
min([a b c])
댓글 수: 2
Guillaume
2014년 11월 6일
bkshn,
[a b c]
is exactly the same as
[a, b, c]
in this case, the , is optional.
As for your new question, as it's fairly different from your original question, please start a new question.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!