Represent array in percentage
조회 수: 16 (최근 30일)
이전 댓글 표시
Nithesh Thakku Krishnamoorthy Ganesan
2021년 6월 14일
댓글: Nithesh Thakku Krishnamoorthy Ganesan
2021년 6월 14일
I have an array, I want to display the array in percentage such that the maximum value in the array is displayed as 100% and the minimum value as 0%. How do i this?
My array is [2.5 2.6 ........ 4.2]
I want to it to be displayed where 2.5 becomes 0% and 4.2 becomes 100%
댓글 수: 0
채택된 답변
Joseph Cheng
2021년 6월 14일
편집: Joseph Cheng
2021년 6월 14일
you would take your array, subtract the minimum, then divide by the resulting maximum x 100
x = [2.4:.4:4.2];
x = x-min(x);
disp(x)
percX = x./(max(x(:)))*100
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!