Форум по Delphi программированию

Delphi Sources



Вернуться   Форум по Delphi программированию > Все о Delphi > [ "Начинающим" ]
Ник
Пароль
Регистрация <<         Правила форума         >> FAQ Пользователи Календарь Поиск Сообщения за сегодня Все разделы прочитаны

Ответ
 
Опции темы Поиск в этой теме Опции просмотра
  #1  
Старый 15.04.2012, 13:34
vitalik8311 vitalik8311 вне форума
Прохожий
 
Регистрация: 15.04.2012
Сообщения: 10
Репутация: 10
Восклицание Delphi математические функции

какие математические функции в делфи Delphi существуют
Ответить с цитированием
  #2  
Старый 15.04.2012, 13:39
Аватар для NumLock
NumLock NumLock вне форума
Let Me Show You
 
Регистрация: 30.04.2010
Адрес: Северодвинск
Сообщения: 5,426
Версия Delphi: 7, XE5
Репутация: 59586
По умолчанию

в файле справки открой раздел "Math routines"
__________________
Пишу программы за еду.
__________________
Ответить с цитированием
Этот пользователь сказал Спасибо NumLock за это полезное сообщение:
vitalik8311 (01.05.2012)
  #3  
Старый 15.04.2012, 13:48
vitalik8311 vitalik8311 вне форума
Прохожий
 
Регистрация: 15.04.2012
Сообщения: 10
Репутация: 10
По умолчанию

это в Delphi 7?
Ответить с цитированием
  #4  
Старый 15.04.2012, 13:56
vitalik8311 vitalik8311 вне форума
Прохожий
 
Регистрация: 15.04.2012
Сообщения: 10
Репутация: 10
По умолчанию

Код:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
ArcCos function
 
Calculates the inverse cosine of a given number.
 
ArcCosh function
 
Calculates the inverse hyperbolic cosine of a given number.
 
ArcCot function
 
Calculates the inverse cotangent of a given number.
 
ArcCotH function
 
Calculates the inverse hyperbolic cotangent of a given number.
 
ArcCsc function
 
Calculates the inverse cosecant of a given number.
 
ArcCscH function
 
Calculates the inverse hyperbolic cosecant of a given number.
 
ArcSec function
 
Calculates the inverse secant of a given number.
 
ArcSecH function
 
Calculates the inverse hyperbolic secant of a given number.
 
ArcSin function
 
Calculates the inverse sine of a given number.
 
ArcSinh function
 
Calculates the inverse hyperbolic sine of a given number.
 
ArcTan2 function
 
Calculates the arctangent angle and quadrant of a given number.
 
ArcTanh function
 
Calculates the inverse hyperbolic tangent of a given number.
 
Ceil function
 
Rounds variables up toward positive infinity.
 
CompareValue function
 
Returns the relationship between two numeric values.
 
Cosecant function
 
Returns the cosecant of an angle.
 
Cosh function
 
Calculates the hyperbolic cosine of an angle.
 
Cot function
 
Calculates the cotangent of an angle.
 
Cotan function
 
Calculates the cotangent of an angle.
 
CotH function
 
Calculates the hyperbolic cotangent of an angle.
 
Csc function
 
Returns the cosecant of an angle.
 
CscH function
 
Returns the hyperbolic cosecant of an angle.
 
CycleToDeg function
 
Converts an angle measurement from cycles to degrees.
 
CycleToGrad function
 
Converts an angle measurement from cycles to grads.
 
CycleToRad function
 
Converts an angle measurement from cycles to radians.
 
DegToCycle function
 
Returns the value of a degree measurement expressed in cycles.
 
DegToGrad function
 
Returns the value of a degree measurement expressed in grads.
 
DegToRad function
 
Returns the value of a degree measurement expressed in radians.
 
DivMod procedure
 
Returns the result of an integer division, including the remainder.
 
DoubleDecliningBalance function
 
Calculates the depreciation of an asset using the double-declining balance method.
 
EnsureRange function
 
Returns the closest value to a specified value within a specified range.
 
Floor function
 
Rounds variables toward negative infinity.
 
Frexp procedure
 
Separates the Mantissa and Exponent of X
 
FutureValue function
 
Calculates the future value of an investment.
 
GetExceptionMask function
 
Returns the exception mask from the FPU control word.
 
GetPrecisionMode function
 
Returns the FPU precision control mode.
 
GetRoundMode function
 
Returns the FPU rounding mode.
 
GradToCycle function
 
Converts grad measurements to cycles.
 
GradToDeg function
 
Converts grad measurements to degrees.
 
GradToRad function
 
Converts grad measurements to radians.
 
Hypot function
 
Calculates the length of the hypotenuse.
 
Infinity constant
 
Represents positive infinity.
 
InRange function
 
Indicates whether a value falls within a specified range.
 
InterestPayment function
 
Calculates the interest portion of a loan payment.
 
InterestRate function
 
Returns the interest rate required to increase PresentValue to FutureValue.
 
InternalRateOfReturn function
 
Calculates the internal rate of return for an investment.
 
IntPower function
 
Calculates the integral power of a base value.
 
IsInfinite function
 
Indicates when a variable or expression represents an infinite value.
 
IsNan function
 
Indicates when a variable or expression does not evaluate to a numeric value.
 
IsZero function
 
Indicates when a floating-point variable or expression evaluates to zero, or very close to zero.
 
Ldexp function
 
Calculates X times (2 to the power of P).
 
LnXP1 function
 
Returns the natural log of (X+1)
 
Log10 function
 
Calculates log base 10.
 
Log2 function
 
Calculates log base 2.
 
LogN function
 
Calculates the log of X for a specified base.
 
Max function
 
Returns the greater of two numeric values (Delphi only).
 
MaxComp constant
 
The maximum value of the Comp data type.
 
MaxDouble constant
 
The maximum value of the double precision floating point type.
 
MaxExtended constant
 
The maximum value of the Extended data type.
 
MaxIntValue function
 
Returns the largest signed value in an integer array.
 
MaxSingle constant
 
The maximum value of the single precision floating point type.
 
MaxValue function
 
Returns the largest signed value in an array.
 
Mean function
 
Returns the average of all values in an array.
 
MeanAndStdDev procedure
 
Calculates the mean and standard deviation of array elements.
 
Min function
 
Returns the lesser of two numeric values (Delphi only).
 
MinComp constant
 
The minimum value of the Comp data type.
 
MinDouble constant
 
The minimum value of the double precision floating point type.
 
MinExtended constant
 
The minimum value of the Extended data type.
 
MinIntValue function
 
Returns the smallest signed value in an integer array.
 
MinSingle constant
 
The minimum value of the single precision floating point type.
 
MinValue function
 
Returns smallest signed value in an array.
 
MomentSkewKurtosis procedure
 
Calculates the mean, variance, skew, and kurtosis.
 
NaN constant
 
Represents a value that is not a number in Delphi.
 
NegInfinity constant
 
Represents negative infinity in Delphi.
 
NetPresentValue function
 
Calculates the current value from an array of estimated cash flow values.
 
Norm function
 
Returns the Euclidean 'L-2' norm.
 
NumberOfPeriods function
 
Returns the number of payment periods for an investment.
 
Payment function
 
Calculates a fully amortized payment.
 
PeriodPayment function
 
Returns the principal amount from a full payment.
 
Poly function
 
Evaluates a uniform polynomial of one variable at the value X.
 
PopnStdDev function
 
Calculates the population standard deviation.
 
PopnVariance function
 
Calculates the population variance.
 
Power function
 
Raises Base to any power.
 
PresentValue function
 
Calculates the present value of an investment.
 
RadToCycle function
 
Converts radians to cycles.
 
RadToDeg function
 
Converts radians to degrees.
 
RadToGrad function
 
Converts radians to grads.
 
RandG function
 
Generates random numbers with Gaussian distribution.
 
RandomRange function
 
Returns a random integer from a specified range.
 
RoundTo function
 
Rounds a floating-point value to a specified digit or power of ten using ”Banker’s rounding”.
 
SameValue function
 
Indicates whether two floating-point values are (approximately) equal.
 
Sec function
 
Calculates the secant of an angle.
 
Secant function
 
Calculates the secant of an angle.
 
SecH function
 
Calculates the hyperbolic secant of an angle.
 
SetExceptionMask function
 
Sets the exception mask on the FPU control word.
 
SetPrecisionMode function
 
Sets the FPU precision control mode.
 
SetRoundMode function
 
Sets the FPU rounding mode.
 
Sign function
 
Indicates whether a numeric value is positive, negative, or zero.
 
SimpleRoundTo function
 
Rounds a floating-point value to a specified digit or power of ten using asymmetric arithmetic rounding.
 
SinCos procedure
 
Returns sine and cosine of an angle.
 
Sinh function
 
Returns the hyperbolic sine of an angle.
 
SLNDepreciation function
 
Returns the straight-line depreciation allowance of an asset.
 
StdDev function
 
Returns the sample standard deviation for elements in an array.
 
Sum function
 
Returns the sum of the elements in an array.
 
SumInt function
 
Returns the sum of the elements in an integer array.
 
SumOfSquares function
 
Returns the sum of the squared values from a data array.
 
SumsAndSquares procedure
 
Returns the sum of the values and the sum of the squared values in an array.
 
SYDDepreciation function
 
Calculates depreciation for an asset.
 
Tan function
 
Returns the tangent of X.
 
Tanh function
 
Returns the hyperbolic tangent of X.
 
TotalVariance function
 
Returns the statistical variance from an array of values.
 
Variance function
 
Calculates statistical sample variance from an array of data.

Последний раз редактировалось Admin, 15.04.2012 в 18:24.
Ответить с цитированием
  #5  
Старый 15.04.2012, 13:57
vitalik8311 vitalik8311 вне форума
Прохожий
 
Регистрация: 15.04.2012
Сообщения: 10
Репутация: 10
По умолчанию

что каждая из них обозначает
Ответить с цитированием
  #6  
Старый 15.04.2012, 14:51
ChinYan ChinYan вне форума
Тыкаю клавиши
 
Регистрация: 13.07.2009
Сообщения: 804
Версия Delphi:
Репутация: 48633
По умолчанию

Гугл переводчик в помощь
Ответить с цитированием
  #7  
Старый 15.04.2012, 14:56
Аватар для NumLock
NumLock NumLock вне форума
Let Me Show You
 
Регистрация: 30.04.2010
Адрес: Северодвинск
Сообщения: 5,426
Версия Delphi: 7, XE5
Репутация: 59586
По умолчанию

Цитата:
Сообщение от vitalik8311
это в Delphi 7?
нет, это в той Delphi справку от которой откроешь.

Цитата:
Сообщение от vitalik8311
что каждая из них обозначает
после каждой написано:
Цитата:
ArcCos function
Calculates the inverse cosine of a given number.
ArcCosh function
Calculates the inverse hyperbolic cosine of a given number.
и т.д.
__________________
Пишу программы за еду.
__________________
Ответить с цитированием
  #8  
Старый 01.05.2012, 16:24
vitalik8311 vitalik8311 вне форума
Прохожий
 
Регистрация: 15.04.2012
Сообщения: 10
Репутация: 10
По умолчанию

ясно все спасибо
Ответить с цитированием
Ответ


Delphi Sources

Опции темы Поиск в этой теме
Поиск в этой теме:

Расширенный поиск
Опции просмотра

Ваши права в разделе
Вы не можете создавать темы
Вы не можете отвечать на сообщения
Вы не можете прикреплять файлы
Вы не можете редактировать сообщения

BB-коды Вкл.
Смайлы Вкл.
[IMG] код Вкл.
HTML код Выкл.
Быстрый переход


Часовой пояс GMT +3, время: 05:49.


 

Сайт

Форум

FAQ

Соглашения

Прочее

 

Copyright © Форум "Delphi Sources" by BrokenByte Software, 2004-2025