Except he wanted it as a string.

Function mult(x,y:Real): String;
begin
   Result := FloatToStr(x * y);
end;

Steve Peacocke wrote:
> Ben none said:
> > 1. Does anyone know how to declare values like this: 0.19 
> and 0.05 and 
> > multiply them and convert it into text?
> >
> > 2. Does anyone know how to make mathematical routines? 
> Anyone know of 
> > some good guidelines to follow?
> >
> > 3. Who has a formula or algorithm for 'residual excited linear 
> > predictive  encoding' written in delphi? Cheers
> >
> > Ben
> 
> Ben, I suggest that you learn Pascal as your first step.
> 
> 1. x := 0.19;
> 
> 2.
> Function mult(x,y:Extended): Extended;
> begin
>    Result := x * y;
> end;
> 
> 3. Search google for "excited linear predictive encoding" and 
> read any of the 1,780 pages returned.
> 
> Steve
---------------------------------------------------------------------------
    New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
                  Website: http://www.delphi.org.nz
To UnSub, send email to: [EMAIL PROTECTED]
with body of "unsubscribe delphi"
Web Archive at: http://www.mail-archive.com/delphi%40delphi.org.nz/

Reply via email to