Percentage increase and decrease from two matrices
이전 댓글 표시
Attaching two matrices A1 and B1. I want to calculate the percentage increase and decrease
deltaSignal = (B1 - A1);
percentageDifference = deltaSignal ./ A1;
A1 from B1. Total percentage increase and the total percentage decrease. I have done some part which I am writing here.
댓글 수: 5
Jan
2022년 12월 22일
What is your question? Write down the mathematical definition of what you want to calculate. Then it is easy to convert this to Matlab.
Joydeb Saha
2022년 12월 22일
Jan
2022년 12월 22일
@Joydeb Saha: Again: Please write down the mathematical definition of "the total percentage change in terms of positive and negative". While the description as text is not really clear, you do need a mathematical representation of what you want to calculate. Then the conversion to Matlab will be very easy.
Joydeb Saha
2022년 12월 22일
Jan
2022년 12월 22일
@Joydeb Saha: How do you define "the percentage of increase of ice" mathematically? The image does not clarify this.
A mathematical definition of "percentage" means: A number of X divided by a number of Y times 100. So what are your X and Y for "total percentage increase and the total percentage decrease".
답변 (1개)
Image Analyst
2022년 12월 22일
0 개 추천
You need to convert the image from RGB values to values on the color bar. See attached demo where I did that for a thermal image.

카테고리
도움말 센터 및 File Exchange에서 Image Arithmetic에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!