Quantcast
Channel: MATLAB Central Newsreader Recent Posts
Viewing all articles
Browse latest Browse all 19628

Re: Solving complex number

$
0
0
"Salvinder " <salvinder@gmail.com> wrote in message <kd10cs$cv6$1@newscl01ah.mathworks.com>...
> Hie,
>
> I've got a matrix of 2X2 as shown below:
>
> [ 0.6 0.4; 0.7 0.3]^n
>
> when I change the value of n based on integer's I have no problem because I'll get the desired answer, but when n becomes decimal numbers such as 1.2 or 1.25, the solution will have a complex number as a solution. For example the solution would look as shown below:
>
> [ 0.2 + 0.034i 0.6 - 0.2i ; 0.4 - 0.03i 0.7+0.4i]
>
> Is there any possible way of removing the complex numbers?
>
> Thanks,

Are you perhaps trying to do an element by element power:

[ 0.6 0.4; 0.7 0.3].^n

This is different mathematically than taking the power of the matrix. Read the help for Mathematical Operators.

Barry

Viewing all articles
Browse latest Browse all 19628

Trending Articles