Apollo  6.0
Open source self driving car software
polynomial_xd.h
Go to the documentation of this file.
1 /******************************************************************************
2  * Copyright 2017 The Apollo Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *****************************************************************************/
16 
21 #pragma once
22 
23 #include <cinttypes>
24 #include <vector>
25 
26 namespace apollo {
27 namespace planning {
28 
29 class PolynomialXd {
30  public:
31  PolynomialXd() = default;
32  explicit PolynomialXd(const std::uint32_t order);
33  explicit PolynomialXd(const std::vector<double>& params);
34  double operator()(const double value) const;
35  double operator[](const std::uint32_t index) const;
36  void SetParams(const std::vector<double>& params);
37 
38  static PolynomialXd DerivedFrom(const PolynomialXd& base);
39  static PolynomialXd IntegratedFrom(const PolynomialXd& base,
40  const double intercept = 0.0);
41 
42  std::uint32_t order() const;
43  const std::vector<double>& params() const;
44 
45  private:
46  std::vector<double> params_;
47 };
48 
49 } // namespace planning
50 } // namespace apollo
PlanningContext is the runtime context in planning. It is persistent across multiple frames...
Definition: atomic_hash_map.h:25
const std::vector< double > & params() const
Planning module main class. It processes GPS and IMU as input, to generate planning info...
double operator[](const std::uint32_t index) const
double operator()(const double value) const
static PolynomialXd IntegratedFrom(const PolynomialXd &base, const double intercept=0.0)
static PolynomialXd DerivedFrom(const PolynomialXd &base)
apollo::cyber::base::std value
Definition: polynomial_xd.h:29
std::uint32_t order() const
void SetParams(const std::vector< double > &params)