26 #ifndef UQ_GSL_VECTOR_H
27 #define UQ_GSL_VECTOR_H
33 #include <queso/Defines.h>
34 #include <queso/Vector.h>
35 #include <gsl/gsl_vector.h>
100 const double&
operator[](
unsigned int i)
const;
118 double norm2 ()
const;
121 double norm1 ()
const;
132 void cwSet (
double value);
174 void print (std::ostream& os)
const;
181 void matlabDiff (
unsigned int firstPositionToStoreDiff,
double valueForRemainderPosition,
GslVector& outputVec)
const;
187 const std::string& fileName,
188 const std::string& fileType,
189 const std::set<unsigned int>& allowedSubEnvIds)
const;
191 const std::string& fileType,
192 const std::set<unsigned int>& allowedSubEnvIds);
210 gsl_vector*
data ()
const;
261 #endif // UQ_GSL_VECTOR_H
GslMatrix operator*(double a, const GslMatrix &mat)
Class for vector operations (virtual).
double sumOfComponents() const
Returns the sum of the components of the vector.
int getMaxValueIndex() const
This function returns the index of the maximum value in the vector this.
bool atLeastOneComponentSmallerOrEqualThan(const GslVector &rhs) const
This function returns true if at least one component of this is smaller than or equal to the respecti...
GslVector & operator+=(const GslVector &rhs)
Stores in this the coordinate-wise addition of this and rhs.
void cwSetGaussian(double mean, double stdDev)
This function sets component-wise Gaussian random variates, with mean mean and standard deviation std...
GslVector abs() const
This function returns absolute value of elements in this.
void cwExtract(unsigned int initialPos, GslVector &vec) const
This function sets the values of this starting at position initialPos ans saves them in vector vec...
double getMaxValue() const
Returns the maximum value in the vector this.
bool atLeastOneComponentSmallerThan(const GslVector &rhs) const
This function returns true if at least one component of this is smaller than the respective component...
double getMinValue() const
Returns minimum value in the vector this.
bool atLeastOneComponentBiggerThan(const GslVector &rhs) const
This function returns true if at least one component of this is bigger than the respective component ...
bool atLeastOneComponentBiggerOrEqualThan(const GslVector &rhs) const
This function returns true if at least one component of this is bigger than or equal to the respectiv...
void getMinValueAndIndex(double &value, int &index)
This function returns minimum value in the vector this and its the index.
void cwSqrt()
This function returns component-wise the square-root of this.
unsigned int sizeGlobal() const
Returns the global length of this vector.
double & operator[](unsigned int i)
Element access method (non-const).
GslVector & operator*=(double a)
Stores in this the coordinate-wise multiplication of this and a.
unsigned int sizeLocal() const
Returns the length of this vector.
void cwSetConcatenated(const GslVector &v1, const GslVector &v2)
This function concatenates GslVector v1 and GslVector v2 into this.
void cwSetInverseGamma(const GslVector &alpha, const GslVector &beta)
This function returns a random variate from the inverse gamma distribution with vector parameters alp...
std::ostream & operator<<(std::ostream &os, const BaseEnvironment &obj)
void getMaxValueAndIndex(double &value, int &index)
This function returns maximum value in the vector this and its the index.
GslVector operator/(double a, const GslVector &x)
GslMatrix operator+(const GslMatrix &m1, const GslMatrix &m2)
gsl_vector * m_vec
GSL vector.
The QUESO MPI Communicator Class.
void cwSetBeta(const GslVector &alpha, const GslVector &beta)
This function returns a random variate from the beta distribution, with vector parameters alpha and b...
double scalarProduct(const GslVector &x, const GslVector &y)
void matlabDiff(unsigned int firstPositionToStoreDiff, double valueForRemainderPosition, GslVector &outputVec) const
double norm2() const
Returns the 2-norm (Euclidean norm) of the vector.
void cwInvert()
This function inverts component-wise the element values of this.
void mpiBcast(int srcRank, const MpiComm &bcastComm)
const BaseEnvironment & env() const
Class for vector operations using GSL library.
GslVector & operator=(const GslVector &rhs)
Copies values from vector rhs to this.
void cwSet(double value)
Component-wise sets all values to this with value.
This (virtual) class sets up the environment underlying the use of the QUESO library by an executable...
void mpiAllReduce(RawType_MPI_Op mpiOperation, const MpiComm &opComm, GslVector &resultVec) const
void cwSetUniform(const GslVector &aVec, const GslVector &bVec)
This function sets component-wise a number uniformly distributed in the range of elements of [aVec...
GslVector & operator-=(const GslVector &rhs)
Stores in this the coordinate-wise subtraction of this by rhs.
int getMinValueIndex() const
This function returns the index of the minimum value in the vector this.
void sort()
This function sorts the elements of the vector this in ascending numerical order. ...
void subReadContents(const std::string &fileName, const std::string &fileType, const std::set< unsigned int > &allowedSubEnvIds)
GslVector & operator/=(double a)
Stores in this the coordinate-wise division of this by a.
GslMatrix operator-(const GslMatrix &m1, const GslMatrix &m2)
GslVector()
Default Constructor.
double norm1() const
Returns the 1-norm of the vector.
gsl_vector * data() const
void copy(const GslVector &src)
This function copies the elements of the vector src into this.
A class for partitioning vectors and matrices.
void mpiAllQuantile(double probability, const MpiComm &opComm, GslVector &resultVec) const
void matlabLinearInterpExtrap(const GslVector &x1Vec, const GslVector &y1Vec, const GslVector &x2Vec)
void print(std::ostream &os) const
Print method. Defines the behavior of the std::ostream << operator inherited from the Object class...
double normInf() const
Returns the infinity-norm (maximum norm) of the vector.
void cwSetGamma(const GslVector &a, const GslVector &b)
This function returns a random variate from the gamma distribution with vector parameters a and b...
double norm2Sq() const
Returns the 2-norm squared of this vector.
bool operator==(const GslVector &lhs, const GslVector &rhs)
void subWriteContents(const std::string &varNamePrefix, const std::string &fileName, const std::string &fileType, const std::set< unsigned int > &allowedSubEnvIds) const