Search:

Type: Posts; User: jeremy-hulse

Search: Search took 0.00 seconds.

  1. Replies
    7
    Views
    2,521

    Okay, fair enough. I wasn't aware of that. Thanks...

    Okay, fair enough. I wasn't aware of that. Thanks very much for your help - much appreciated.
  2. Replies
    7
    Views
    2,521

    I appreciate what you're saying - writing in the...

    I appreciate what you're saying - writing in the programme instead, a function like:


    int next_i(int i) {
    int next = (i+1)%L;
    return next;
    }

    Please correct me if i am wrong, but I...
  3. Replies
    7
    Views
    2,521

    I guess I am trying to make a new class - all I...

    I guess I am trying to make a new class - all I need is a function that will return the next largest number in a periodic fashion, from a set of natural numbers, L. ( i.e. next_i[0] = 1 ......
  4. Replies
    7
    Views
    2,521

    Arrays: defining a new class in c++

    Dear All,

    I am trying to make class which uses an array to give a periodic function and am having some trouble!

    Effectively, I am trying to make an array such that, for any point (i,j) in a 2D...
Results 1 to 4 of 4