#include <iostream>
#include <string>
#include <map>
#include <vector>

using namespace std; 


 
class Matriz
{
public:
  Matriz(){}
  Matriz(const std::vector<double> & vector)
  {
  }
Matriz & operator*=(const Matriz& valor)
{
  return *this;
}

//Matriz & operator*=(const vector<double>& valor)
//{
//  return *this;
//}
};


int main()
{
  double vetor[3] = { 1, 2, 3 };
  std::vector<double> vec(vetor, vetor + 3);
  Matriz A;
  A*=std::vector<double>(vetor, vetor + 3);

  return 0;
}