// NVector.cpp: implementation of the CNVector class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "NTGraph.h" #include "NVector.h" #ifdef _DEBUG #undef THIS_FILE static char THIS_FILE[]=__FILE__; #define new DEBUG_NEW #endif ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// CNVector::CNVector() { } CNVector::CNVector( unsigned int size ) { // Constructs a vector with the specified number of elements. } CNVector::CNVector( unsigned int size, double value ) { // Constructs a vector with the specified number of elements initialized to a constant value. } CNVector::CNVector( unsigned int size, const double* data ) { // Constructs a vector with the specified number of elements initialized from an array of data values. } CNVector::CNVector( const CNVector& source ) { // Copy Constructor } CNVector::~CNVector() { }
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.
A list of licenses authors might use can be found here
The Next Version of Android - Some of What's Coming