abs數學函式應用例項

2021-07-11 18:20:28 字數 888 閱讀 3824

函式名: abs

功 能: 求整數的絕對值

標頭檔案:stdlib.h

函式原型:int abs(int i);

程式例:

#include #include int main(void)

程式執行結果

[root@localhost abs]# make

[root@localhost abs]# ./tabs

num: -1234 |num|: 1234

num: 1234 |num|: 1234

num: 0 |num|: 0

num: -1234 |num|: 1234

fnum: -1234.567017 |fnum|: 0.000000

num: 1234 |num|: 1234

fnum: 1234.567017 |fnum|: 0.000000

在c語言中還有fabs,也是求絕對值的,不同的是,fabs函式引數與返回值為實型。

在32位機上若不用系統的函式及條件語句可以使用以下函式實現取絕對值:

int myabs(int n)

例項(64位機器測試):

#include #include int main(void)

程式執行結果:

[root@localhost abs]# make

[root@localhost abs]# ./tabs

n:-5 |n|:5

n:6 |n|:6

atan2數學函式應用例項

atan2 y,x 是表示x y平面上所對應的 x,y 座標的角度,它的值域範圍是 pi,pi 用數學表示就是 atan2 y,x arg y x pi 當y 0時,其值為負,當y 0時,其值為正.原型 extern float atan2 float y,float x 用法 include 功能...

例項講解Python3中abs 函式

python3 abs 函式 描程式設計客棧述 abs 函式返回數字的絕對值。語法以下是 abs 方法的語法 abs x 引數x 數值表示式,可以是整數,浮點數,複數。返回值函式返回 x 數字 的絕對值,如果引數是乙個複數,則返回它的大小。例項以下展示了使用 abs 方法的例項 usr bin py...

Matlab基本操作函式 abs函式

1 abs函式 數值的絕對值和複數的幅值 2 基本用法 y abs x 函式對陣列元素進行絕對值處理的函式。函式的定義域包括複數。對於複數x a b i,有abs x a2 b2。3 例項 x 2 4i 7 9i 23 12i 98 2000i x 1.0e 03 0.0020 0.0040i 0....