Miscelaneous#
Error handling#
- 
class Error : public runtime_error#
- Exception class used for all errors in metatensor. 
N-dimensional arrays#
- 
template<typename T>
 class NDArray#
- Simple N-dimensional array interface - This class can either be a non-owning view inside some existing memory (for example memory allocated by Rust); or own its memory (in the form of an - std::vector<double>). If the array does not own its memory, accessing it is only valid for as long as the memory is kept alive.- The API of this class is very intentionally minimal to keep metatensor as simple as possible. Feel free to wrap the corresponding data inside types with richer API such as Eigen, Boost, etc. - Public Functions - 
inline NDArray(const T *data, std::vector<size_t> shape)#
- Create a new - NDArrayusing a non-owning view in- constmemory with the given- shape.- datamust point to contiguous memory containing the right number of elements as described by the- shape, which will be interpreted as an N-dimensional array in row-major order. The resulting- NDArrayis only valid for as long as- datais.
 - 
inline NDArray(T *data, std::vector<size_t> shape)#
- Create a new - NDArrayusing a non-owning view in non-- constmemory with the given- shape.- datamust point to contiguous memory containing the right number of elements as described by the- shape, which will be interpreted as an N-dimensional array in row-major order. The resulting- NDArrayis only valid for as long as- datais.
 - 
inline NDArray(std::vector<T> data, std::vector<size_t> shape)#
- Create a new - NDArrayowning its- datawith the given- shape.
 - 
template<typename ...Args>
 inline T operator()(Args... args) const &#
- Get the value inside this - NDArrayat the given index- auto array = NDArray(...); double value = array(2, 3, 1); 
 - 
template<typename ...Args>
 inline T &operator()(Args... args) &#
- Get a reference to the value inside this - NDArrayat the given index- auto array = NDArray(...); array(2, 3, 1) = 5.2; 
 - 
inline const T *data() const &#
- Get the data pointer for this array, i.e. the pointer to the first element. 
 - 
inline const std::vector<size_t> &shape() const &#
- Get the shape of this array. 
 - 
inline bool is_empty() const#
- Check if this array is empty, i.e. if at least one of the shape element is 0. 
 
- 
inline NDArray(const T *data, std::vector<size_t> shape)#