📄 itkfemelementtest.h
字号:
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkFEMElementTest.h,v $
Language: C++
Date: $Date: 2003-12-12 14:58:00 $
Version: $Revision: 1.4 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
// disable debug warnings in MS compiler
#ifdef _MSC_VER
#pragma warning(disable: 4786)
#endif
#include "itkFEM.h"
#include "itkFEMSolver.h"
#include "itkFEMLinearSystemWrappers.h"
#include "itkExceptionObject.h"
#include <iostream>
#include <fstream>
#include <exception>
#define DEFAULT_COMMENT '.'
#define MATLAB_COMMENT '%'
#define IDL_COMMENT ';'
// Only one of these _OUTPUT variables should be nonzero, otherwise
// things will become confusing! If both are zero, no output will be
// generated.
#define MATLAB_OUTPUT 1
#define IDL_OUTPUT 0
#define DEBUG_FEM_TESTS ( MATLAB_OUTPUT || IDL_OUTPUT )
int itkFEMElementTest(int, char* [] );
//void PrintResults(Solver&, int, char);
void PrintK( itk::fem::Solver &, int, char);
void PrintF( itk::fem::Solver&, int, char);
void PrintNodalCoordinates( itk::fem::Solver&, int, char);
void PrintU( itk::fem::Solver&, int, char);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -