Recent content by Natr0n

  1. Natr0n

    Plotting isoclines corresponding to slopes m = +1 and m -1?

    Seems correct except in You don't need \pm because you're taking the cube root not the square root.
  2. Natr0n

    Equilateral triangle expressed as function

    It seems that you want to express the area of an equilateral triangle as a function of its side length. First, the area of any triangle is indeed 1/2(base * height). Let x be the side length of the equilateral triangle, then the area of the triangle is A(x) = 1/2(x * height). Now you need to...
  3. Natr0n

    Step-by-Step Guide to Setting up MPICH on a Mac with an IDE

    Have you seen http://mpich.darwinports.com/" yet?
  4. Natr0n

    Help with STL container list for INformation Manager

    To get the address including the spaces you would use http://www.cppreference.com/wiki/string/getline" as follows: getline(cin, add);
  5. Natr0n

    Help with STL container list for INformation Manager

    Great. That's not really the point though. The problem is that that a statement like cin >> card.getFirst(); isn't going to work. Actually, the method probably should be written something like this: void Rolodex::Add() { string first, last, add, occ, phone; cout << "Creating new Card "<<...
  6. Natr0n

    Help with STL container list for INformation Manager

    void Rolodex::Add(Rolocard card) { string first, last, add, occ, phone; cout << "Creating new Card "<< endl; cout << "----------------------"<<endl; cout << "Enter First Name: " << endl; cin >> card.getFirst(); //problem cout << "Enter Last Name: "<< endl; cin >> card.getLast()...