Prev: How do we make a function for summation of functions analytically?
Next: An exact simplification challenge - 98 (MeijerG)
From: hildaa on 24 Jul 2010 05:32 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 24 Jul 2010 06:00
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. |