Prev: Enumeration in Matlab. Please, need help. Thank You.
Next: Recognize path in save dialog for future save dialog boxes
From: Aaron Anstey on 17 Jul 2010 07:45 I have defined one column of an array as voltage and another column of any array as current. When I multiply voltage by current the answer given is incorrect as it has been divided by 1000. Why is this? I noticed that the comment 1.0e+004 * appears when the answer (Power) is given Power = 1.0e+004 * 0.1168 0.0918 0.0918 0.0863 0.0835 Thanks for any help
From: us on 17 Jul 2010 07:55
"Aaron Anstey" <elaja2(a)lboro.ac.uk> wrote in message <i1s540$qbl$1(a)fred.mathworks.com>... > I have defined one column of an array as voltage and another column of any array as current. When I multiply voltage by current the answer given is incorrect as it has been divided by 1000. Why is this? > > I noticed that the comment 1.0e+004 * appears when the answer (Power) is given > > Power = > > 1.0e+004 * > > 0.1168 > 0.0918 > 0.0918 > 0.0863 > 0.0835 > Thanks for any help that's the way ML is doing ...things... as simple as that... a hint: help format; us |