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

📄 spreadsheet.hpp

📁 financal instrument pricing using c
💻 HPP
字号:
// spreadsheet.hpp
//
// Simple class for getting Vectors into Excel.
//
// (C) Datasim Education BV 2003

class SpreadSheet
public:

		string sheetName;
		string Ytext;
		string Xtext;
		string mainTitle;

void sendToExcel(const Vector<double, int>& vec)
{ // Draw one graph in an Excel sheet

	// inline
}


void sendToExcel(const list<Vector<double, int> >& vec)
{ // Draw multiple graphs in an Excel sheet

	// inline
}

void sendToExcel(const NumericMatrix<double, int> >& matrix, list<string>& captions)
{ // Print a matrix in Excel cell format. The captions are the names of the columns

	// inline
}

⌨️ 快捷键说明

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