📄 tntmath.h
字号:
// Template Numerical Toolkit (TNT) for Linear Algebra//// BETA VERSION INCOMPLETE AND SUBJECT TO CHANGE// Please see http://math.nist.gov/tnt for updates//// R. Pozo// Mathematical and Computational Sciences Division// National Institute of Standards and Technology// Header file for scalar math functions#ifndef TNTMATH_H#define TNTMATH_H// conventional functions required by several matrix algorithmsinline double abs(double t){ return ( t > 0 ? t : -t);}inline double min(double a, double b){ return (a < b ? a : b);}inline double max(double a, double b){ return (a > b ? a : b);}inline double sign(double a){ return (a > 0 ? 1 : -1);}inline float abs(float t){ return ( t > 0 ? t : -t);}inline float min(float a, float b){ return (a < b ? a : b);}inline float max(float a, float b){ return (a > b ? a : b);}inline float sign(float a){ return (a > 0 ? 1 : -1);}#endif// TNTMATH_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -