Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. int m = 3;
  2. int l = 4;
  3. int k - 6;
  4. std::vector<int> perceptrons;
  5. for(int i = 0; i < k; i++){
  6. Perceptron Ki = Perceptron(m, l);
  7. perceptrons.push_back(Ki);
  8. }
  9.  
  10. Main.cpp:102:33: error: no matching function for call to β€˜std::vector<int>::push_back(Perceptron&)’
  11. perceptrons.push_back(Ki);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement