public API
(
switch to internal
)
-
revision 3.6.7
Function
Expression graphs
SX/DM
MX
Sparsity
Expression tools
Solvers
nlpsol
integrator
conic
linsol
rootfinder
Classes
Class Hierarchy
Class Members
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
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Enumerations
Enumerator
Related Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
w
Namespaces
Namespace List
Namespace Members
All
_
a
c
d
e
f
h
i
l
m
n
o
q
r
s
t
u
v
w
Functions
_
c
d
e
f
h
i
l
m
n
q
r
s
t
u
w
Typedefs
Enumerations
Enumerator
Examples
casadi
core
runtime
casadi_vector_fmax.hpp
1
//
2
// MIT No Attribution
3
//
4
// Copyright (C) 2010-2023 Joel Andersson, Joris Gillis, Moritz Diehl, KU Leuven.
5
//
6
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
7
// software and associated documentation files (the "Software"), to deal in the Software
8
// without restriction, including without limitation the rights to use, copy, modify,
9
// merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
10
// permit persons to whom the Software is furnished to do so.
11
//
12
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
13
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
14
// PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
15
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
16
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
17
// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
18
//
19
20
21
// SYMBOL "vector_fmax"
22
// elementwise fmax of two vectors
23
template
<
typename
T1>
24
void
casadi_vector_fmax(casadi_int n,
const
T1* x,
const
T1* y, T1* z) {
25
casadi_int i;
26
// C-REPLACE "fmax" "casadi_fmax"
27
for
(i=0; i<n; ++i) z[i] = fmax(x[i], y[i]);
28
}