escript  Revision_
DataExpanded.h
Go to the documentation of this file.
1 
2 /*****************************************************************************
3 *
4 * Copyright (c) 2003-2020 by The University of Queensland
5 * http://www.uq.edu.au
6 *
7 * Primary Business: Queensland, Australia
8 * Licensed under the Apache License, version 2.0
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Development until 2012 by Earth Systems Science Computational Center (ESSCC)
12 * Development 2012-2013 by School of Earth Sciences
13 * Development from 2014-2017 by Centre for Geoscience Computing (GeoComp)
14 * Development from 2019 by School of Earth and Environmental Sciences
15 **
16 *****************************************************************************/
17 
18 
19 #if !defined escript_DataExpanded_20040323_H
20 #define escript_DataExpanded_20040323_H
21 #include "system_dep.h"
22 
23 #include "DataReady.h"
24 
25 namespace escript {
26 
27 //
28 // Forward declarations of other Data types.
29 class DataConstant;
30 class DataTagged;
31 
44 class DataExpanded : public DataReady {
45 
46 typedef DataReady parent;
47 
48  public:
49 
65  explicit DataExpanded(const WrappedArray& value,
66  const FunctionSpace& what);
67 
77  explicit DataExpanded(const DataExpanded& other,
78  const DataTypes::RegionType& region);
79 
93  explicit DataExpanded(const FunctionSpace& what,
94  const DataTypes::ShapeType &shape,
95  const DataTypes::RealVectorType &data);
96 
97 
99  explicit DataExpanded(const FunctionSpace& what,
100  const DataTypes::ShapeType &shape,
101  const DataTypes::CplxVectorType &data);
102 
103 
104 
106  explicit DataExpanded(const FunctionSpace& what,
107  const DataTypes::ShapeType &shape,
108  const DataTypes::real_t data);
109 
111  explicit DataExpanded(const FunctionSpace& what,
112  const DataTypes::ShapeType &shape,
113  const DataTypes::cplx_t data);
114 
115 
122  DataExpanded(const DataExpanded& other);
123 
130  explicit DataExpanded(const DataConstant& other);
131 
138  explicit DataExpanded(const DataTagged& other);
139 
145  virtual
146  ~DataExpanded();
147 
149  bool
150  isExpanded() const
151  {
152  return true;
153  };
154 
156  bool
157  actsExpanded() const
158  {
159  return true;
160  }
161 
166  bool
167  hasNaN() const;
168 
173  void
175 
177  void
179 
184  virtual bool
185  hasInf() const;
186 
191  virtual void
193 
198  virtual void
200 
201 
207  virtual
208  std::string
209  toString() const;
210 
215  virtual
216  DataAbstract*
217  deepCopy() const;
218 
224  virtual
225  DataAbstract*
226  zeroedCopy() const;
227 
228 
234  virtual
235  void
236  dump(const std::string fileName) const;
237 
238 
245  virtual int
246  matrixInverse(DataAbstract* out) const;
247 
253  virtual
254  void
255  setToZero();
256 
267  virtual
269  getPointOffset(int sampleNo,
270  int dataPointNo) const;
271 
272 // ESCRIPT_DLL_API
273 // virtual
274 // DataTypes::RealVectorType::size_type
275 // getPointOffset(int sampleNo,
276 // int dataPointNo);
277 
285  getVectorRW();
286 
289  getVectorRO() const;
290 
293  getVectorRWC();
294 
297  getVectorROC() const;
298 
301 
302  virtual const DataTypes::RealVectorType&
303  getTypedVectorRO(DataTypes::real_t dummy) const;
304 
307 
308  virtual const DataTypes::CplxVectorType&
309  getTypedVectorRO(DataTypes::cplx_t dummy) const;
310 
316  virtual
318  getLength() const;
319 
328  virtual
329  DataAbstract*
330  getSlice(const DataTypes::RegionType& region) const;
331 
340  virtual
341  void
342  setSlice(const DataAbstract* value,
343  const DataTypes::RegionType& region);
344 
357  void
358  setTaggedValue(int tagKey,
359  const DataTypes::ShapeType& pointshape,
360  const DataTypes::RealVectorType& value,
361  int dataOffset=0);
362 
363  void
364  setTaggedValue(int tagKey,
365  const DataTypes::ShapeType& pointshape,
366  const DataTypes::CplxVectorType& value,
367  int dataOffset=0);
368 
377  virtual void
378  symmetric(DataAbstract* ev);
379 
388  virtual void
390 
399  virtual void
400  hermitian(DataAbstract* ev);
401 
410  virtual void
412 
413 
414 
424  virtual void
425  trace(DataAbstract* ev, int axis_offset);
426 
435  virtual void
436  transpose(DataAbstract* ev, int axis_offset);
437 
447  virtual void
448  swapaxes(DataAbstract* ev, int axis0, int axis1);
449 
450 
459  virtual void
461 
474  virtual void
475  eigenvalues_and_eigenvectors(DataAbstract* ev,DataAbstract* V,const double tol=1.e-13);
476 
484  virtual void
485  reorderByReferenceIDs(DataTypes::dim_t *reference_ids);
486 
488  void
489  complicate();
490  protected:
491 
492  private:
493 
509  void
510  initialise(int noSamples,
511  int noDataPointsPerSample,
512  bool cplx
513  );
514 
524  void
525  copy(const DataConstant& value);
526 
527 
528 
536  void
537  copy(const WrappedArray& value);
538 
539 
552  virtual void
553  copyToDataPoint(const int sampleNo, const int dataPointNo, const DataTypes::real_t value);
554 
556  virtual void
557  copyToDataPoint(const int sampleNo, const int dataPointNo, const DataTypes::cplx_t value);
558 
559 
569  virtual void
570  copyToDataPoint(const int sampleNo, const int dataPointNo, const WrappedArray& value);
571 
572  //
573  // The main data storage array, a 2D array of data blocks.
574  // noSamples * noDataPointsPerSample
577 };
578 
579 } // end of namespace
580 
581 #endif
escript::DataTypes::maxRank
static const int maxRank
The maximum number of dimensions a datapoint can have.
Definition: DataTypes.h:46
ESCRIPT_DLL_API
#define ESCRIPT_DLL_API
Definition: escriptcore/src/system_dep.h:30
escript::DataExpanded::trace
virtual void trace(DataAbstract *ev, int axis_offset)
Computes the trace of a matrix.
Definition: DataExpanded.cpp:936
escript::DataExpanded::dump
virtual void dump(const std::string fileName) const
dumps the object into a netCDF file
Definition: DataExpanded.cpp:1335
escript::DataTypes::real_t
double real_t
type of all real-valued scalars in escript
Definition: DataTypes.h:51
escript::DataExpanded::setSlice
virtual void setSlice(const DataAbstract *value, const DataTypes::RegionType &region)
Copy the specified region from the given value.
Definition: DataExpanded.cpp:290
escript::DataExpanded::isExpanded
bool isExpanded() const
Definition: DataExpanded.h:150
escript::DataExpanded::replaceNaN
void replaceNaN(DataTypes::real_t value)
replaces all NaN values with value
Definition: DataExpanded.cpp:460
escript::DataTypes::copySlice
void copySlice(VEC &left, const ShapeType &leftShape, typename VEC::size_type leftOffset, const VEC &other, const ShapeType &otherShape, typename VEC::size_type otherOffset, const RegionLoopRangeType &region)
Copy a data slice specified by the given region and offset from the "other" vector into the "left" ve...
Definition: DataVector.h:174
escript::DataExpanded::deepCopy
virtual DataAbstract * deepCopy() const
Return a deep copy of the current object.
Definition: DataExpanded.cpp:265
escript::DataConstant::getTypedVectorRO
virtual const DataTypes::RealVectorType & getTypedVectorRO(DataTypes::real_t dummy) const
Definition: DataConstant.cpp:872
escript::antihermitian
void antihermitian(const DataTypes::CplxVectorType &in, const DataTypes::ShapeType &inShape, typename DataTypes::CplxVectorType::size_type inOffset, DataTypes::CplxVectorType &ev, const DataTypes::ShapeType &evShape, typename DataTypes::CplxVectorType::size_type evOffset)
computes a antihermitian matrix from your square matrix A: (A - adjoint(A)) / 2
Definition: DataVectorOps.cpp:963
escript::DataAbstract::m_noDataPointsPerSample
int m_noDataPointsPerSample
Definition: DataAbstract.h:560
escript::DataExpanded::parent
DataReady parent
Definition: DataExpanded.h:46
escript::FunctionSpace::getNumSamples
DataTypes::dim_t getNumSamples() const
Returns the number of samples.
Definition: FunctionSpace.h:168
escript::DataExpanded::setTaggedValue
void setTaggedValue(int tagKey, const DataTypes::ShapeType &pointshape, const DataTypes::RealVectorType &value, int dataOffset=0)
setTaggedValue
Definition: DataExpanded.cpp:1406
escript::FunctionSpace::getReferenceIDOfSample
DataTypes::dim_t getReferenceIDOfSample(DataTypes::dim_t sampleNo) const
Returns the reference number associated with the given sample number. This function is not efficient....
Definition: FunctionSpace.h:123
escript::DataExpanded::getTypedVectorRW
virtual DataTypes::RealVectorType & getTypedVectorRW(DataTypes::real_t dummy)
These versions use the type system rather than method name to determine return type.
Definition: DataExpanded.cpp:1526
escript::DataTypes::checkShape
bool checkShape(const ShapeType &s1, const ShapeType &s2)
Test if two shapes are equal.
Definition: DataTypes.h:305
escript::DataExpanded::m_data_r
DataTypes::RealVectorType m_data_r
Definition: DataExpanded.h:575
escript::DataConstant
DataConstant stores a single data point which represents the entire function space.
Definition: DataConstant.h:38
escript::eigenvalues
void eigenvalues(const DataTypes::RealVectorType &in, const DataTypes::ShapeType &inShape, typename DataTypes::RealVectorType::size_type inOffset, DataTypes::RealVectorType &ev, const DataTypes::ShapeType &evShape, typename DataTypes::RealVectorType::size_type evOffset)
solves a local eigenvalue problem
Definition: DataVectorOps.h:639
escript::WrappedArray
Definition: WrappedArray.h:33
escript::DataTypes::DataVectorAlt::resize
void resize(const size_type newSize, const value_type newVal=0.0, const size_type newBlockSize=1)
Resize the DataVectorAlt to the given length "newSize". All current data is lost. All elements in the...
Definition: DataVectorAlt.h:291
escript::DataExpanded::replaceInf
virtual void replaceInf(DataTypes::real_t value)
replaces all (+/-)Inf values with value
Definition: DataExpanded.cpp:545
escript::DataTypes::DataVectorAlt< cplx_t >::size_type
DataTypes::vec_size_type size_type
Definition: DataVectorAlt.h:50
escript::WrappedArray::isComplex
bool isComplex() const
Definition: WrappedArray.h:71
escript::symmetric
void symmetric(const VEC &in, const DataTypes::ShapeType &inShape, typename VEC::size_type inOffset, VEC &ev, const DataTypes::ShapeType &evShape, typename VEC::size_type evOffset)
computes a symmetric matrix from your square matrix A: (A + transpose(A)) / 2
Definition: DataVectorOps.h:103
escript::DataExpanded::copyToDataPoint
virtual void copyToDataPoint(const int sampleNo, const int dataPointNo, const DataTypes::real_t value)
Copy a double value to the data point dataPointNo of sample sampleNo in this object.
Definition: DataExpanded.cpp:713
escript::DataTypes::DataVectorAlt< real_t >
escript::transpose
void transpose(const VEC &in, const DataTypes::ShapeType &inShape, typename VEC::size_type inOffset, VEC &ev, const DataTypes::ShapeType &evShape, typename VEC::size_type evOffset, int axis_offset)
Transpose each data point of this Data object around the given axis.
Definition: DataVectorOps.h:343
escript::DataTypes::DataVectorAlt::copyFromArrayToOffset
void copyFromArrayToOffset(const WrappedArray &value, size_type offset, size_type copies)
Definition: DataVectorAlt.h:386
escript::DataExpanded::getSlice
virtual DataAbstract * getSlice(const DataTypes::RegionType &region) const
Factory method that returns a newly created DataExpanded. The caller is reponsible for managing the o...
Definition: DataExpanded.cpp:285
escript::DataExpanded::setToZero
virtual void setToZero()
sets all values to zero
Definition: DataExpanded.cpp:1160
escript::DataExpanded::transpose
virtual void transpose(DataAbstract *ev, int axis_offset)
Transpose each data point of this Data object around the given axis.
Definition: DataExpanded.cpp:975
escript::DataAbstract::getRank
unsigned int getRank() const
Return the rank information for the point data.
Definition: DataAbstract.h:653
CHECK_FOR_EX_WRITE
#define CHECK_FOR_EX_WRITE
Definition: DataExpanded.cpp:59
escript::DataExpanded::antihermitian
virtual void antihermitian(DataAbstract *ev)
Computes an antihermitian matrix (A - A*) / 2.
Definition: DataExpanded.cpp:907
escript::DataExpanded::toString
virtual std::string toString() const
Return a textual representation of the data.
Definition: DataExpanded.cpp:594
escript::DataExpanded::actsExpanded
bool actsExpanded() const
Return true if this Data is expanded or resolves to expanded. That is, if it has a separate value for...
Definition: DataExpanded.h:157
escript::DataExpanded::eigenvalues
virtual void eigenvalues(DataAbstract *ev)
solves the eigenvalue problem this*V=ev*V for the eigenvalues ev
Definition: DataExpanded.cpp:1052
escript::FunctionSpace
Definition: FunctionSpace.h:36
escript::DataTypes::getSliceRegionLoopRange
DataTypes::RegionLoopRangeType getSliceRegionLoopRange(const DataTypes::RegionType &region)
Modify region to copy from in order to deal with the case where one range in the region contains iden...
Definition: DataTypes.cpp:188
escript::DataReady
Definition: DataReady.h:37
escript::DataExpanded::copy
void copy(const DataConstant &value)
Copy the given data point value to all data points in this object.
Definition: DataExpanded.cpp:351
escript::DataExpanded::matrixInverse
virtual int matrixInverse(DataAbstract *out) const
invert square matricies
Definition: DataExpanded.cpp:1122
escript::DataExpanded::complicate
void complicate()
Definition: DataExpanded.cpp:641
escript::LapackInverseHelper
Definition: LapackInverseHelper.h:28
escript::WrappedArray::getRank
unsigned int getRank() const
Definition: WrappedArray.h:77
escript::DataTagged
Simulates a full dataset accessible via sampleNo and dataPointNo.
Definition: DataTagged.h:46
escript::DataExpanded::DataExpanded
DataExpanded(const WrappedArray &value, const FunctionSpace &what)
Constructor for DataExpanded.
Definition: DataExpanded.cpp:64
escript::DataAbstract::getNumDPPSample
int getNumDPPSample() const
Return the number of data points per sample.
Definition: DataAbstract.h:612
escript::DataException
Definition: DataException.h:28
escript::FunctionSpace::getNumDataPointsPerSample
int getNumDataPointsPerSample() const
Definition: FunctionSpace.h:177
escript::hermitian
void hermitian(const DataTypes::CplxVectorType &in, const DataTypes::ShapeType &inShape, DataTypes::CplxVectorType::size_type inOffset, DataTypes::CplxVectorType &ev, const DataTypes::ShapeType &evShape, DataTypes::CplxVectorType::size_type evOffset)
computes an hermitian matrix from your square matrix A: (A + adjoint(A)) / 2
Definition: DataVectorOps.cpp:916
escript::DataTypes::dim_t
index_t dim_t
Definition: DataTypes.h:65
escript::DataTypes::ShapeType
std::vector< int > ShapeType
The shape of a single datapoint.
Definition: DataTypes.h:43
DataExpanded.h
escript::JMPI
boost::shared_ptr< JMPI_ > JMPI
Definition: EsysMPI.h:72
escript::DataTypes
Contains the types to represent Shapes, Regions, RegionLoop ranges and vectors of data as well as the...
Definition: DataTypes.cpp:88
escript::DataTypes::fillComplexFromReal
void fillComplexFromReal(const RealVectorType &r, CplxVectorType &c)
copy data from a real vector to a complex vector The complex vector will be resized as needed and any...
escript::DataExpanded::getPointOffset
virtual DataTypes::RealVectorType::size_type getPointOffset(int sampleNo, int dataPointNo) const
Return the offset for the given given data point. This returns the offset in bytes for the given poin...
Definition: DataExpanded.cpp:622
escript::DataTypes::copySliceFrom
void copySliceFrom(VEC &left, const ShapeType &leftShape, typename VEC::size_type leftOffset, const VEC &other, const ShapeType &otherShape, typename VEC::size_type otherOffset, const RegionLoopRangeType &region)
Copy data into a slice specified by the given region and offset in the left vector from the other vec...
Definition: DataVector.h:281
escript::DataAbstract::getPointOffset
virtual DataTypes::RealVectorType::size_type getPointOffset(int sampleNo, int dataPointNo) const =0
Return the offset for the given sample. This returns the offset for the given point into the containe...
escript::FunctionSpace::getNumDPPSample
int getNumDPPSample() const
Returns the number of data points per sample.
Definition: FunctionSpace.h:174
escript::DataExpanded::hasNaN
bool hasNaN() const
Return true if any value in the data contains a NaN.
Definition: DataExpanded.cpp:424
escript::DataTypes::RegionType
std::vector< std::pair< int, int > > RegionType
Definition: DataTypes.h:44
escript::DataAbstract::getShape
const DataTypes::ShapeType & getShape() const
Return the shape information for the point data.
Definition: DataAbstract.h:642
escript::DataTypes::getResultSliceShape
DataTypes::ShapeType getResultSliceShape(const RegionType &region)
Determine the shape of the specified slice region.
Definition: DataTypes.cpp:173
escript::DataTypes::DataVectorAlt::copyFromArray
void copyFromArray(const WrappedArray &value, size_type copies)
Populates the vector with the data from value. This method currently throws an exception if the speci...
Definition: DataVectorAlt.h:482
escript::DataAbstract::getNumSamples
int getNumSamples() const
Return the number of samples.
Definition: DataAbstract.h:623
escript::DataExpanded::antisymmetric
virtual void antisymmetric(DataAbstract *ev)
Computes a antisymmetric matrix (A - AT) / 2.
Definition: DataExpanded.cpp:840
escript::DataTypes::copyPoint
void copyPoint(RealVectorType &dest, vec_size_type doffset, vec_size_type nvals, const RealVectorType &src, vec_size_type soffset)
Copy a point from one vector to another. Note: This version does not check to see if shapes are the s...
escript::DataTagged::getTypedVectorRO
virtual const DataTypes::RealVectorType & getTypedVectorRO(DataTypes::real_t dummy) const
Definition: DataTagged.cpp:1676
escript::DataExpanded::getVectorROC
const DataTypes::CplxVectorType & getVectorROC() const
Definition: DataExpanded.cpp:1521
escript::DataExpanded::reorderByReferenceIDs
virtual void reorderByReferenceIDs(DataTypes::dim_t *reference_ids)
reorders data sample ordered by reference_ids to the ordering of the functions space
Definition: DataExpanded.cpp:1471
escript::DataExpanded
Give a short description of what DataExpanded does.
Definition: DataExpanded.h:44
escript::DataExpanded::zeroedCopy
virtual DataAbstract * zeroedCopy() const
Return an object with the same type, domain (and tags if appropriate) as this, but all values are zer...
Definition: DataExpanded.cpp:271
escript::matrix_inverse
int matrix_inverse(const DataTypes::RealVectorType &in, const DataTypes::ShapeType &inShape, DataTypes::RealVectorType::size_type inOffset, DataTypes::RealVectorType &out, const DataTypes::ShapeType &outShape, DataTypes::RealVectorType::size_type outOffset, int count, LapackInverseHelper &helper)
computes the inverses of square (up to 3x3) matricies
Definition: DataVectorOps.cpp:207
escript::DataTagged::getPointOffset
virtual DataTypes::RealVectorType::size_type getPointOffset(int sampleNo, int dataPointNo) const
getPointOffset
Definition: DataTagged.cpp:982
DataConstant.h
escript::DataAbstract::m_iscompl
bool m_iscompl
Definition: DataAbstract.h:564
escript::DataExpanded::getTypedVectorRO
virtual const DataTypes::RealVectorType & getTypedVectorRO(DataTypes::real_t dummy) const
Definition: DataExpanded.cpp:1532
escript::DataExpanded::getVectorRO
const DataTypes::RealVectorType & getVectorRO() const
Definition: DataExpanded.cpp:1510
escript::swapaxes
void swapaxes(const VEC &in, const DataTypes::ShapeType &inShape, typename VEC::size_type inOffset, VEC &ev, const DataTypes::ShapeType &evShape, typename VEC::size_type evOffset, int axis0, int axis1)
swaps the components axis0 and axis1.
Definition: DataVectorOps.h:488
escript::DataTypes::RegionLoopRangeType
std::vector< std::pair< int, int > > RegionLoopRangeType
Definition: DataTypes.h:45
V
#define V(_K_, _I_)
Definition: ShapeFunctions.cpp:121
escript::DataAbstract::m_noSamples
int m_noSamples
Definition: DataAbstract.h:555
escript::DataTypes::index_t
int index_t
type for array/matrix indices used both globally and on each rank
Definition: DataTypes.h:60
escript
Definition: AbstractContinuousDomain.cpp:23
escript::DataTypes::DataVectorAlt::size
size_type size() const
Return the number of elements in this DataVectorAlt.
Definition: DataVectorAlt.h:215
escript::DataTypes::pointToString
std::string pointToString(const RealVectorType &data, const ShapeType &shape, int offset, const std::string &prefix)
Display a single value (with the specified shape) from the data.
escript::DataTypes::getRelIndex
vec_size_type getRelIndex(const DataTypes::ShapeType &shape, vec_size_type i)
Compute the offset (in 1D vector) of a given subscript with a shape.
Definition: DataTypes.h:234
escript::DataExpanded::getVectorRW
DataTypes::RealVectorType & getVectorRW()
Return a a reference to the underlying DataVector.
Definition: DataExpanded.cpp:1504
escript::DataAbstract
Definition: DataAbstract.h:63
escript::DataExpanded::hermitian
virtual void hermitian(DataAbstract *ev)
Computes an hermitian matrix (A + A*) / 2.
Definition: DataExpanded.cpp:882
DataVectorOps.h
Describes binary operations performed on DataVector.
escript::DataTypes::createShapeErrorMessage
std::string createShapeErrorMessage(const std::string &messagePrefix, const DataTypes::ShapeType &other, const DataTypes::ShapeType &thisShape)
Produce a string containing two shapes.
Definition: DataTypes.cpp:206
escript::DataExpanded::hasInf
virtual bool hasInf() const
Return true if data contains Inf or -Inf.
Definition: DataExpanded.cpp:509
escript::FunctionSpace::getTypeCode
int getTypeCode() const
Returns the function space type code.
Definition: FunctionSpace.cpp:95
DataTagged.h
escript::DataExpanded::eigenvalues_and_eigenvectors
virtual void eigenvalues_and_eigenvectors(DataAbstract *ev, DataAbstract *V, const double tol=1.e-13)
solves the eigenvalue problem this*V=ev*V for the eigenvalues ev and eigenvectors V
Definition: DataExpanded.cpp:1091
escript::DataAbstract::isComplex
bool isComplex() const
true if the components of datapoints are complex
Definition: DataAbstract.cpp:70
escript::DataExpanded::getLength
virtual DataTypes::RealVectorType::size_type getLength() const
Return the number of doubles stored for the Data.
Definition: DataExpanded.cpp:652
escript::FunctionSpace::borrowSampleReferenceIDs
const DataTypes::dim_t * borrowSampleReferenceIDs() const
Returns a borrowed reference to the list of sample reference IDs.
Definition: FunctionSpace.cpp:199
escript::DataAbstract::getNoValues
unsigned int getNoValues() const
Return the number of values in the shape for this object.
Definition: DataAbstract.h:664
escript::DataExpanded::swapaxes
virtual void swapaxes(DataAbstract *ev, int axis0, int axis1)
swaps components axis0 and axis1
Definition: DataExpanded.cpp:1013
Data.h
DataReady.h
escript::antisymmetric
void antisymmetric(const VEC &in, const DataTypes::ShapeType &inShape, typename VEC::size_type inOffset, VEC &ev, const DataTypes::ShapeType &evShape, typename VEC::size_type evOffset)
computes a antisymmetric matrix from your square matrix A: (A - transpose(A)) / 2
Definition: DataVectorOps.h:152
escript::DataAbstract::getFunctionSpace
const FunctionSpace & getFunctionSpace() const
Return the function space associated with this Data object.
Definition: DataAbstract.h:635
system_dep.h
escript::DataTypes::cplx_t
std::complex< real_t > cplx_t
complex data type
Definition: DataTypes.h:54
escript::WrappedArray::getShape
const DataTypes::ShapeType & getShape() const
Definition: WrappedArray.h:83
ESYS_ASSERT
#define ESYS_ASSERT(a, b)
EsysAssert is a MACRO that will throw an exception if the boolean condition specified is false.
Definition: Assert.h:79
escript::DataAbstract::ShapeType
DataTypes::ShapeType ShapeType
Definition: DataAbstract.h:67
escript::DataExpanded::symmetric
virtual void symmetric(DataAbstract *ev)
Computes a symmetric matrix (A + AT) / 2.
Definition: DataExpanded.cpp:802
escript::DataExpanded::initialise
void initialise(int noSamples, int noDataPointsPerSample, bool cplx)
Common initialisation called from constructors.
Definition: DataExpanded.cpp:405
escript::DataExpanded::~DataExpanded
virtual ~DataExpanded()
Default destructor for DataExpanded.
Definition: DataExpanded.cpp:261
escript::DataExpanded::getVectorRWC
DataTypes::CplxVectorType & getVectorRWC()
Definition: DataExpanded.cpp:1515
escript::trace
void trace(const VEC &in, const DataTypes::ShapeType &inShape, typename VEC::size_type inOffset, VEC &ev, const DataTypes::ShapeType &evShape, typename VEC::size_type evOffset, int axis_offset)
computes the trace of a matrix
Definition: DataVectorOps.h:242
DataException.h
escript::DataExpanded::m_data_c
DataTypes::CplxVectorType m_data_c
Definition: DataExpanded.h:576
escript::eigenvalues_and_eigenvectors
void eigenvalues_and_eigenvectors(const DataTypes::RealVectorType &in, const DataTypes::ShapeType &inShape, DataTypes::RealVectorType::size_type inOffset, DataTypes::RealVectorType &ev, const DataTypes::ShapeType &evShape, DataTypes::RealVectorType::size_type evOffset, DataTypes::RealVectorType &V, const DataTypes::ShapeType &VShape, DataTypes::RealVectorType::size_type VOffset, const double tol=1.e-13)
solves a local eigenvalue problem
Definition: DataVectorOps.h:750