- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
%% wrapper for math:log/1 to avoid dividing by zero
math_log(0) ->
1;
math_log(0.0) ->
1.0;
math_log(X) when X < 0 ->
0; % it's not possible to take a log of a negative number, return 0
math_log(X) ->
math:log(X).
bormand 07.04.2018 17:59 # +1
3.14159265 08.04.2018 23:36 # 0
j123123 08.04.2018 10:21 # +1
inho 08.04.2018 23:38 # 0
bormand 08.04.2018 23:42 # 0
roman-kashitsyn 09.04.2018 00:25 # 0
Ну так, весьма отдалённо. В прологе нет возвращаемых значений, т.е. было бы
newmindcore 24.08.2021 00:46 # 0