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

📄 lu.h

📁 大师写的二代小波经典之作
💻 H
字号:
/* *  -*- Mode: ANSI C -*- *  $Id: lu.h,v 1.2 1996/08/16 17:23:27 fernande Exp $ *  $Source: /sgi.acct/sweldens/cvs/liftpack/include/lu.h,v $ *  Author: Fernandez, Gabriel * *  Declaration of the functions used to perform the LU decomposition *  of matrix a. Function LUdcmp() performs the LU operations on a[][] *  and function LUbksb() performs the backsubstitution giving the *  solution in b[]; *//* do not edit anything above this line */#ifndef __LU_H__#define __LU_H__#include "flwtdef.h"/* LU decomposition */extern void LUdcmp ( Matrix __a, int __n, int *__indx, Flt *__d );/* LU backsubstitution */extern void LUbksb ( Matrix __a, int __n, int *__indx, Vector __b );#endif /* __LU_H__ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -