NumCpp
2.14.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Variables
a
c
d
e
g
h
i
j
m
n
o
p
s
t
v
Typedefs
Enumerations
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
a
c
d
e
i
l
m
n
p
r
s
t
v
x
y
z
Typedefs
a
c
d
i
p
r
s
t
v
Enumerations
Related Symbols
Files
File List
Globals
All
Macros
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
Enums.hpp
Go to the documentation of this file.
1
28
#pragma once
29
30
namespace
nc
31
{
32
//================================================================================
33
// Class Description:
35
enum class
Axis
36
{
37
NONE
= 0,
38
ROW
,
39
COL
40
};
35
enum class
Axis
{
…
};
41
42
//================================================================================
43
// Class Description:
45
enum class
Endian
46
{
47
NATIVE
= 0,
48
BIG
,
49
LITTLE
50
};
45
enum class
Endian
{
…
};
51
52
//================================================================================
53
// Class Description:
55
enum class
PointerPolicy
56
{
57
COPY
,
58
SHELL
59
};
55
enum class
PointerPolicy
{
…
};
60
61
//================================================================================
62
// Class Description:
64
enum class
Bias
:
bool
65
{
66
YES
=
true
,
67
NO
=
false
68
};
64
enum class
Bias
:
bool
{
…
};
69
70
//================================================================================
71
// Class Description:
73
enum class
EndPoint
:
bool
74
{
75
YES
=
true
,
76
NO
=
false
77
};
73
enum class
EndPoint
:
bool
{
…
};
78
79
//================================================================================
80
// Class Description:
82
enum class
Increasing
:
bool
83
{
84
YES
=
true
,
85
NO
=
false
86
};
82
enum class
Increasing
:
bool
{
…
};
87
88
//================================================================================
89
// Class Description:
91
enum class
IsRoots
:
bool
92
{
93
YES
=
true
,
94
NO
=
false
95
};
91
enum class
IsRoots
:
bool
{
…
};
96
97
//================================================================================
98
// Class Description:
100
enum class
Replace
:
bool
101
{
102
YES
=
true
,
103
NO
=
false
104
};
100
enum class
Replace
:
bool
{
…
};
105
106
//================================================================================
107
// Class Description:
109
enum class
PrintElapsedTime
:
bool
110
{
111
YES
=
true
,
112
NO
=
false
113
};
109
enum class
PrintElapsedTime
:
bool
{
…
};
114
115
//================================================================================
116
// Class Description:
118
enum class
PrintResults
:
bool
119
{
120
YES
=
true
,
121
NO
=
false
122
};
118
enum class
PrintResults
:
bool
{
…
};
123
124
//============================================================================
125
// Class Description:
128
enum class
Side
129
{
130
LEFT
,
131
RIGHT
132
};
128
enum class
Side
{
…
};
133
134
//============================================================================
135
// Class Description:
138
enum class
InterpolationMethod
139
{
140
LINEAR
,
141
LOWER
,
142
HIGHER
,
143
NEAREST
,
144
MIDPOINT
145
};
138
enum class
InterpolationMethod
{
…
};
146
}
// namespace nc
nc
Definition
Cartesian.hpp:40
nc::InterpolationMethod
InterpolationMethod
Definition
Enums.hpp:139
nc::InterpolationMethod::HIGHER
@ HIGHER
nc::InterpolationMethod::LOWER
@ LOWER
nc::InterpolationMethod::LINEAR
@ LINEAR
nc::InterpolationMethod::NEAREST
@ NEAREST
nc::InterpolationMethod::MIDPOINT
@ MIDPOINT
nc::Replace
Replace
Replace boolean.
Definition
Enums.hpp:101
nc::Axis
Axis
Enum To describe an axis.
Definition
Enums.hpp:36
nc::Axis::ROW
@ ROW
nc::Axis::COL
@ COL
nc::Axis::NONE
@ NONE
nc::PrintResults
PrintResults
Print Results boolean.
Definition
Enums.hpp:119
nc::PrintElapsedTime
PrintElapsedTime
Print Elapsed Time boolean.
Definition
Enums.hpp:110
nc::Side
Side
Definition
Enums.hpp:129
nc::Side::RIGHT
@ RIGHT
nc::Side::LEFT
@ LEFT
nc::IsRoots
IsRoots
Is Roots boolean.
Definition
Enums.hpp:92
nc::Endian
Endian
Enum for endianess.
Definition
Enums.hpp:46
nc::Endian::LITTLE
@ LITTLE
nc::Endian::BIG
@ BIG
nc::Endian::NATIVE
@ NATIVE
nc::PointerPolicy
PointerPolicy
Policy for NdArray constructor that takes in a pointer to data.
Definition
Enums.hpp:56
nc::PointerPolicy::SHELL
@ SHELL
nc::PointerPolicy::COPY
@ COPY
nc::Bias
Bias
Bias boolean.
Definition
Enums.hpp:65
nc::Bias::YES
@ YES
nc::Bias::NO
@ NO
nc::Increasing
Increasing
Increasing boolean.
Definition
Enums.hpp:83
nc::EndPoint
EndPoint
End Point boolean.
Definition
Enums.hpp:74
include
NumCpp
Core
Enums.hpp
Generated by
1.9.8