I need to find the max value of an Array without using builtin functions
조회 수: 2 (최근 30일)
이전 댓글 표시
Write out by hand a MATLAB script for finding the maximum value within an array, A. Assume the array is given and you can calculate the size of the array using the MATLAB command size. You cannot use any other MATLAB built-in functions, including max.
I don't even know how to start this process. Not asking for the assignment to be done for me. Just some tips or hints. Thanks
댓글 수: 3
Star Strider
2015년 2월 12일
It’s been a very long while since I wrote in assembler, but if I remember correctly, even machine code has relational and conditional operators. Barring all of them at any level makes this assignment absolutely impossible.
답변 (1개)
Star Strider
2015년 2월 12일
Relational operators such as < or <= and others might be useful. Since you’re allowed to use size, read the documentation on for and if as well.
댓글 수: 2
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!