I want to change matrix value

3 次查看(过去 30 天)
Abdullah
Abdullah 2017-3-3
评论: Adam 2017-3-8
I have image in V channel, I want to do like that IF the matirx element == this value then ignore else change the value of that pixel or number to this number then store it in new matrix How can I do that ?

回答(2 个)

KSSV
KSSV 2017-3-3
K = round(rand(3,3)) ;
K0 = K
% change equal to one's to -1
K(K==1) = -1
  2 个评论
Abdullah
Abdullah 2017-3-8
thanks for your reply but my issue is like that I have image matrix example
A = 1 2 3 4 5 6 7 8 9 1 3 5 B = 1:3 if A==B change the value of that pixel to 0 else just leave it save the new A in A_new
that what i need to do
KSSV
KSSV 2017-3-8
To check for A==B both of them should be of same dimension. In your example, they are different.

请先登录,再进行评论。


Adam
Adam 2017-3-3
编辑:Adam 2017-3-3
myArray( myArray ~= someValue ) = someOtherValue;
  2 个评论
Abdullah
Abdullah 2017-3-8
thanks for your reply but my issue is like that I have image matrix example
A = 1 2 3 4 5 6 7 8 9 1 3 5 B = 1:3 if A==B change the value of that pixel to 0 else just leave it save the new A in A_new
that what I need to do

请先登录,再进行评论。

产品

Community Treasure Hunt

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

Start Hunting!

Translated by