⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tntmath.h

📁 本系统采用VC开发.可实现点云数据的处理,图像缩放,生成曲面.
💻 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 + -