Lines Matching refs:src
91 std::vector<double> Matrix3::MapScalars(const std::vector<double>& src) const
94 if (static_cast<int32_t>(src.size()) != DIMENSION) {
100 item = item + matrix3X3_[i][j] * src[j];
107 bool Matrix3::MapScalars(const std::vector<double>& src, std::vector<double>& result) const
109 if (static_cast<int32_t>(src.size()) != DIMENSION) {
116 item = item + matrix3X3_[i][j] * src[j];
166 std::vector<double> Matrix3N::MapScalars(const std::vector<double>& src) const
169 if (static_cast<int32_t>(src.size()) != columns_) {
175 item = item + Matrix3n_[i][j] * src[j];
182 bool Matrix3N::MapScalars(const std::vector<double>& src, std::vector<double>& result) const
184 if (static_cast<int32_t>(src.size()) != columns_) {
191 item = item + Matrix3n_[i][j] * src[j];
223 std::vector<double> MatrixN3::MapScalars(const std::vector<double>& src) const
226 if (static_cast<int32_t>(src.size()) != DIMENSION) {
232 item = item + Matrixn3_[i][j] * src[j];