find values inside a matrix matlab -



find values inside a matrix matlab -

i have vector (or matrix) want print out values of it.

i explain:

let have complex array. want find values within array between 2 5. how do that? dont want find indices of these values! want print out (create new array) want values.

let's denote a input matrix. a complex, there 2 cases:

a(real(a)>=2 & real(a)<=5) %% real values between 2 , 5 a(abs(a)>=2 & abs(a)<=5) %% modulus between 2 , 5

matlab

Comments

Popular posts from this blog

delphi - blogger via idHTTP : error 400 bad request -

content management system - How to allow only English submissions on Pligg CMS -

c++ - Is it possible to apply breadth-first search algorithm of boost library to matrix? -