newmatio.h

来自「国外一个大牛人写的MEAN-SHIFT目标跟踪算法」· C头文件 代码 · 共 62 行

H
62
字号
//$$ newmatio.h           definition file for matrix package input/output// Copyright (C) 1991,2,3,4: R B Davies#ifndef NEWMATIO_LIB#define NEWMATIO_LIB 0#ifndef WANT_STREAM#define WANT_STREAM#endif#include "newmat.h"#ifdef use_namespacenamespace NEWMAT {#endif/**************************** input/output *****************************/ostream& operator<<(ostream&, const BaseMatrix&);ostream& operator<<(ostream&, const GeneralMatrix&);/*  Use in some old versions of G++ without complete iomanipulatorsclass Omanip_precision{   int x;public:   Omanip_precision(int i) : x(i) {}   friend ostream& operator<<(ostream& os, Omanip_precision i);};Omanip_precision setprecision(int i);class Omanip_width{   int x;public:   Omanip_width(int i) : x(i) {}   friend ostream& operator<<(ostream& os, Omanip_width i);};Omanip_width setw(int i);*/#ifdef use_namespace}#endif#endif// body file: newmat9.cpp

⌨️ 快捷键说明

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