iOS math.h 常用數學函數

來源:互聯網
上載者:User
1、 三角函數 
  double sin (double);正弦 
  double cos (double);餘弦 
  double tan (double);正切 
  2 、反三角函數 
  double asin (double); 結果介於[-PI/2, PI/2] 
  double acos (double); 結果介於[0, PI] 
  double atan (double); 反正切(主值), 結果介於[-PI/2, PI/2] 
  double atan2 (double, double); 反正切(整圓值), 結果介於[-PI, PI] 
  3 、雙曲三角函數 
  double sinh (double); 
  double cosh (double); 
  double tanh (double); 
  4 、指數與對數 
  double exp (double);求取自然數e的冪 
  double sqrt (double);開平方 
  double log (double); 以e為底的對數 
  double log10 (double);以10為底的對數 
  double pow(double x, double y);計算以x為底數的y次冪 
  float powf(float x, float y); 功能與pow一致,只是輸入與輸出皆為浮點數 
  5 、取整 
  double ceil (double); 取上整 
  double floor (double); 取下整 
  6 、絕對值 
  double fabs (double);求絕對值 
  double cabs(struct complex znum) ;求複數的絕對值 
  7 、標準化浮點數 
  double frexp (double f, int *p); 標準化浮點數, f = x * 2^p, 已知f求x, p ( x介於[0.5, 1] ) 
  double ldexp (double x, int p); 與frexp相反, 已知x, p求f 
  8 、取整與取餘 
  double modf (double, double*); 將參數的整數部分通過指標回傳, 返回小數部分 
  double fmod (double, double); 返回兩參數相除的餘數 
  9 、其他 
  double hypot(double x, double y);已知直角三角形兩個直角邊長度,求斜邊長度
  double ldexp(double x, int exponent);計算x*(2的exponent次冪) 
  double poly(double x, int degree, double coeffs [] );計算多項式 
  nt matherr(struct exception *e);數學錯誤計算處理常式

Math.h放在哪裡。那個是c的函數庫:輸入一個數學函數,然後雙擊這個函數-->右鍵用jump to definition就可以跳到這個標頭檔裡了-->右鍵選Show in Finder,就知道這個標頭檔在哪裡了。
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.