From: hildaa on
Hi all
i have this msg error in matlab :??? Error using ==> reshape
Size arguments must be real integers.

please haw can i solve this pb ,

Regards !!
From: Walter Roberson on
hildaa wrote:
> Hi all
> i have this msg error in matlab :??? Error using ==> reshape
> Size arguments must be real integers.
>
> please haw can i solve this pb ,

Are there floating point computations involved in calculating the sizes?
If so then you are probably having problems with floating point
round-off. For example, 2*(0.1+0.1+0.1+0.1+0.1) probably does _not_
equal 1 .

We'd need to see your code.