How to restrict the range ?
이전 댓글 표시
I want to restrict the output of the arc cosine to be in the range [-1,1], but I want to know if there is built-in Matlab function for this task and if it is possible for example merge @max & @min simultaneoulsy in the function bsxfun to achieve this task.
채택된 답변
추가 답변 (1개)
Walter Roberson
2016년 3월 3일
min(max(x, -1), 1)
댓글 수: 2
Susan Arnold
2016년 3월 3일
편집: Susan Arnold
2016년 3월 3일
Jos (10584)
2016년 3월 4일
Simply replace -1 and 1 by the minimum and maximum of B
... max(A,min(B(:))) ...
카테고리
도움말 센터 및 File Exchange에서 Error Handling에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!