Why the division of two positive values gives negative value?

조회 수: 7 (최근 30일)
Youssra
Youssra 2016년 5월 5일
편집: Stephen23 2016년 5월 5일
Hello,I'm using the following code to find a positive factor:
[U S V] = svd(image, 'econ'); % calculate the SVD of the image
level=4;
factorJND=jnd(image, level) ; % calculate the JND values of the image
f=factorJND/abs(U*V) % divid the JND value by the multiplication of U and V matrices ( they have the same size)
knowing that factorJND and abs(U*V) are both positive, it gives me positive and negative numbers!! I don't know why!
f= -7.2851 6.4520
-7.7509 5.5236
-7.3374 4.1684
-5.6905 5.0915
I even try to do :
f=abs(factorJND)/abs(U*V)
But still gives me the same result while it should be all positive values!

채택된 답변

Stephen23
Stephen23 2016년 5월 5일
편집: Stephen23 2016년 5월 5일
You are using the wrong divide: you probably intended to use array right divide ./ instead of matrix right divide / (yes, they are different, and it is your job to pick the right one).
And read about the difference:
That is why MATLAB has documentation: so that we know how to use it. You should read it whenever you use any function or operator, so that you understand how to use MATLAB. You don't need to just guess or ask random strangers on internet forums.
  댓글 수: 1
Youssra
Youssra 2016년 5월 5일
Oh my God I totally forgot about that :o!!it works immediatelly. thank youuu ^^

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by