ndarray
NumPy-friendly multidimensional arrays in C++
Loading...
Searching...
No Matches
ndarray.h
Go to the documentation of this file.
1// -*- c++ -*-
2/*
3 * Copyright (c) 2010-2012, Jim Bosch
4 * All rights reserved.
5 *
6 * ndarray is distributed under a simple BSD-like license;
7 * see the LICENSE file that should be present in the root
8 * of the source distribution, or alternately available at:
9 * https://github.com/ndarray/ndarray
10 */
11#ifndef NDARRAY_ndarray_h_INCLUDED
12#define NDARRAY_ndarray_h_INCLUDED
13
19#include "ndarray/Array.h"
20#include "ndarray/ArrayRef.h"
22#ifndef GCC_45
23#include "ndarray/operators.h"
24#include "ndarray/arange.h"
25#endif
26#include "ndarray/casts.h"
27#include "ndarray/formatting.h"
28
29namespace ndarray {
30
390} // namespace ndarray
391
392#endif // !NDARRAY_ndarray_h_INCLUDED
Definitions for ArrayRef.
Definitions for Array.
Expression classes to generate regularly-spaced ranges of values.
Specialized casts for Array.
iostream output support for Expression.
Construction functions for array.
Arithmetic and logical operators for Array.