| MATLAB Function Reference | ![]() |
TF = isreal(A)
TF = isreal(A) returns logical 0 (false) if any element of array A has an imaginary component, even if the value of that component is 0. For logical, char, numeric, and function handle data types, isreal returns logical 1 (true) otherwise.
Note For cell, struct, and object data types, isreal also returns logical 0 (false). |
~isreal(x) returns true for arrays that have at least one element with an imaginary component. The value of that component can be 0.
If A is real, complex(A) returns a complex number whose imaginary component is 0, and isreal(complex(A)) returns false. In contrast, the addition A + 0i returns the real value A, and isreal(A + 0i) returns true.
If B is real and A = complex(B), then A is a complex matrix and isreal(A) returns false, while A(m:n) returns a real matrix and isreal(A(m:n)) returns true.
Because MATLAB® software supports complex arithmetic, certain of its functions can introduce significant imaginary components during the course of calculations that appear to be limited to real numbers. Thus, you should use isreal with discretion.
These examples use isreal to detect the presence or absence of imaginary numbers in an array. Let
x = magic(3); y = complex(x);
isreal(x) returns true because no element of x has an imaginary component.
isreal(x)
ans =
1isreal(y) returns false, because every element of x has an imaginary component, even though the value of the imaginary components is 0.
isreal(y)
ans =
0This expression detects strictly real arrays, i.e., elements with 0-valued imaginary components are treated as real.
~any(imag(y(:)))
ans =
1Given the following cell array,
C{1,1} = pi; % double
C{1,2} = 'John Doe'; % char array
C{1,3} = 2 + 4i; % complex double
C{1,4} = ispc; % logical
C{1,5} = magic(3) % double array
C{1,6} = complex(5,0) % complex double
C =
[3.1416] 'John Doe' [2.0000+ 4.0000i] [1] [3x3 double] [5]isreal shows that all but C{1,3} and C{1,6} are real arrays.
for k = 1:6
x(k) = isreal(C{1,k});
end
x
x =
1 1 0 1 1 0complex, isnumeric, isnan, isprime, isfinite, isinf, isa, is*
![]() | isprop | isscalar | ![]() |
| © 1984-2008- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |