Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Convert the value of a numeric expression to the character external display representation of float.

Parameters
  1. Numeric Expression
Example
Code Block
languagejavascript
pjs.define("fl1", { type: 'float', length: 8 });
pjs.define("c1", { type: 'char', length: 40, varying: true });

fl1 = 50000;
c1 = pjs.editFloat(fl1 - 4E4);

return c1; 
//+1.000000000000000E+004

...