cos.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of ACADO Toolkit.
3  *
4  * ACADO Toolkit -- A Toolkit for Automatic Control and Dynamic Optimization.
5  * Copyright (C) 2008-2014 by Boris Houska, Hans Joachim Ferreau,
6  * Milan Vukov, Rien Quirynen, KU Leuven.
7  * Developed within the Optimization in Engineering Center (OPTEC)
8  * under supervision of Moritz Diehl. All rights reserved.
9  *
10  * ACADO Toolkit is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 3 of the License, or (at your option) any later version.
14  *
15  * ACADO Toolkit is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with ACADO Toolkit; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23  *
24  */
25 
26 
27 
37 
38 
39 double dCos(double x){
40  return -sin(x);
41 }
42 
43 
44 double ddCos(double x){
45  return -cos(x);
46 }
47 
49 
50 
52  cName = "cos";
53 
54  fcn = &cos;
55  dfcn = &dCos;
56  ddfcn = &ddCos;
57 
59 
60 }
61 
62 Cos::Cos( Operator *_argument ):UnaryOperator(_argument){
63  cName = "cos";
64 
65  fcn = &cos;
66  dfcn = &dCos;
67  ddfcn = &ddCos;
68 
70 }
71 
72 
73 Cos::Cos( const Cos &arg ):UnaryOperator(arg){
74  cName = "cos";
75 
76  fcn = &cos;
77  dfcn = &dCos;
78  ddfcn = &ddCos;
79 
81 }
82 
83 
85 
86 }
87 
88 
89 Cos& Cos::operator=( const Cos &arg ){
90 
92 
93  return *this;
94 }
95 
96 
98 
99  x->Cos(*argument);
100  return SUCCESSFUL_RETURN;
101 }
102 
103 
104 Operator* Cos::substitute( int index, const Operator *sub ){
105 
106  return new Cos( argument->substitute( index , sub ) );
107 
108 }
109 
111 
112  return new Cos(*this);
113 }
114 
116 
117  if( initialized ) return SUCCESSFUL_RETURN;
119 
122 
123  return argument->initDerivative();
124 }
125 
126 
128 
129 // end of file.
Operator * derivative2
USING_NAMESPACE_ACADO IntermediateState sin(const Expression &arg)
Abstract base class for all scalar-valued symbolic operators.
Definition: operator.hpp:60
Implements the scalar sine operator within the symbolic operators family.
Definition: sin.hpp:55
double(* ddfcn)(double)
Operator * derivative
Abstract base class for all scalar-valued unary operators within the symbolic operators family...
Allows to pass back messages to the calling function.
double dCos(double x)
Definition: cos.cpp:39
virtual Operator * clone() const =0
virtual Operator * substitute(int index, const Operator *sub)=0
Cos()
Definition: cos.cpp:51
#define CLOSE_NAMESPACE_ACADO
Operator * argument
BooleanType initialized
Definition: operator.hpp:642
~Cos()
Definition: cos.cpp:84
IntermediateState cos(const Expression &arg)
double(* dfcn)(double)
UnaryOperator & operator=(const UnaryOperator &arg)
Implements the scalar cosine operator within the symbolic operators family.
Definition: cos.hpp:55
double ddCos(double x)
Definition: cos.cpp:44
virtual void Cos(Operator &arg)=0
virtual returnValue initDerivative()
Definition: operator.cpp:519
#define BT_TRUE
Definition: acado_types.hpp:47
std::string cName
virtual returnValue evaluate(EvaluationBase *x)
Definition: cos.cpp:97
virtual Operator * clone() const
Definition: cos.cpp:110
OperatorName operatorName
virtual Operator * substitute(int index, const Operator *sub)
Definition: cos.cpp:104
virtual TreeProjection * convert2TreeProjection(Operator *a) const
Definition: operator.cpp:312
#define BEGIN_NAMESPACE_ACADO
Abstract base class for templated evaluation of operators.
virtual returnValue initDerivative()
Definition: cos.cpp:115
double(* fcn)(double)
Cos & operator=(const Cos &arg)
Definition: cos.cpp:89
Implements a scalar constant within the symbolic operators family.
Implements the scalar product operator within the symbolic operators family.
Definition: product.hpp:55


acado
Author(s): Milan Vukov, Rien Quirynen
autogenerated on Mon Jun 10 2019 12:34:31