Prev: VRML
Next: Writing down data into the memory of PLC??
From: carl on 14 Apr 2010 08:40 When I print a vector I get: v = 1.0e+004 * 0 0.8149 1.3217 1.4438 1.4544 but is 1.0e+004 the same as 10000 or 1000 ?
From: someone on 14 Apr 2010 09:39 "carl" <carl@.com> wrote in message <4bc5b7de$0$282$14726298(a)news.sunsite.dk>... > When I print a vector I get: > > v = > > 1.0e+004 * > > 0 0.8149 1.3217 1.4438 1.4544 > > > but is 1.0e+004 the same as 10000 or 1000 ? 1.0e+004 = 10000 >> isequal(1.0e+004,10000) ans = 1 >> isequal(1.0e+004,1000) ans = 0
From: Kenneth H on 14 Apr 2010 09:44 "carl" <carl@.com> wrote in message <4bc5b7de$0$282$14726298(a)news.sunsite.dk>... > When I print a vector I get: > > v = > > 1.0e+004 * > > 0 0.8149 1.3217 1.4438 1.4544 > > > but is 1.0e+004 the same as 10000 or 1000 ? '1.0e+004' means '1 by ten to the power of 4' which is 1 x 10,000, so it's 10,000. Type for example z = 1.0e+004 into the command window and it will return z = 10000
|
Pages: 1 Prev: VRML Next: Writing down data into the memory of PLC?? |