mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-13 11:39:24 +02:00
+ Added example 4
This commit is contained in:
parent
011a187da3
commit
89c8550cc7
@ -32,7 +32,7 @@ endif
|
|||||||
|
|
||||||
.PHONY: all tex clean
|
.PHONY: all tex clean
|
||||||
|
|
||||||
OBJECTS=ex1 ex2 ex3
|
OBJECTS=ex1 ex2 ex3 ex4
|
||||||
|
|
||||||
TEXOBJECTS=$(addsuffix .tex, $(OBJECTS))
|
TEXOBJECTS=$(addsuffix .tex, $(OBJECTS))
|
||||||
|
|
||||||
|
@ -6,3 +6,4 @@ Example programs
|
|||||||
ex1.pp contains an example of the arccos function.
|
ex1.pp contains an example of the arccos function.
|
||||||
ex2.pp contains an example of the arcsin function.
|
ex2.pp contains an example of the arcsin function.
|
||||||
ex3.pp contains an example of the arcosh function.
|
ex3.pp contains an example of the arcosh function.
|
||||||
|
ex4.pp contains an example of the arsinh function.
|
10
docs/mathex/ex4.pp
Normal file
10
docs/mathex/ex4.pp
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
Program Example4;
|
||||||
|
|
||||||
|
{ Program to demonstrate the arsinh function. }
|
||||||
|
|
||||||
|
Uses math;
|
||||||
|
|
||||||
|
begin
|
||||||
|
// Writeln(arsinh(0));
|
||||||
|
Writeln(arsinh(1));
|
||||||
|
end.
|
Loading…
Reference in New Issue
Block a user