summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2015-07-24 08:40:08 +0200
committerErich Eckner <git@eckner.net>2015-07-24 08:40:08 +0200
commitc0e9dbf977b136f741abc63e821a5eb5e3a9cf72 (patch)
tree061f97714cdbe1a0c9bb9b9ae63c772f628f1210
parent271339bda9e87962e8384238de2752a0be741202 (diff)
downloadunits-c0e9dbf977b136f741abc63e821a5eb5e3a9cf72.tar.xz
nullfunktion in matheunit.pas eingefuegt
-rw-r--r--matheunit.pas6
1 files changed, 6 insertions, 0 deletions
diff --git a/matheunit.pas b/matheunit.pas
index 4783196..3049ca5 100644
--- a/matheunit.pas
+++ b/matheunit.pas
@@ -31,6 +31,7 @@ function myStrToFloat(s: string): extended;
procedure copyArray(i: tExtPointArray; out o: tExtPointArray); overload;
procedure copyArray(i: tLongintArray; out o: tLongintArray); overload;
procedure copyArray(i: tExtendedArray; out o: tExtendedArray); overload;
+function nullfunktion(x: extended): extended;
implementation
@@ -250,5 +251,10 @@ begin
o[j]:=i[j];
end;
+function Nullfunktion(x: extended): extended;
+begin
+ result:=0*x;
+end;
+
end.