C/C++ How to make my program switch commands at certain intervals/bounds in c++

AI Thread Summary
The discussion revolves around implementing a program in C++ that alternates between two formulas based on time intervals. The requirement is to apply formula 1 during the interval from time = 0 to time = (T/2) and formula 2 from time = (T/2) to time = T. This pattern continues, with the program switching formulas at every (T/2) interval, leading to progressively larger intervals as time increases. To achieve this, a suggestion is made to use the fmod() function from the math.h library to handle floating-point values. By calculating fmod((time * 2.0) / T, 2.0), the program can determine which formula to apply based on whether the remainder is less than 1 or greater than or equal to 1. This approach effectively manages the alternating intervals without needing a boolean command, accommodating user-defined lengths of time.
odinx
Messages
9
Reaction score
0
I have a new problem where I have 2 formulas, and I need to tell my program that at certain intervals/parameters/bounds it needs to do one of the formulas and at other intervals it needs to do another one.

To be more descriptive When ever my time=0 to time=(T/2) it should do formula 1, and whenever it is time=(T/2) to time=T it does formula 2. So looking at it another way my
time= [0, (T/2)] it does formula 1 and at time=[(T/2), T] it does formula 2.

Meaning that it switches positions/formulas at every (T/2).

I just don't know what command I would do to make this happen in c++ at first I thought of using the bool command, but the thing is the length of time the program is run is determined by the user, so the longer the time the more intervals.

Let me explain what I mean, after the intervals time=[(T/2), T] it will keep going to make a new interval of time=[T, (3T/2)], thus switching to formula 1 again, and the intervals will keep getting bigger because of the time used.

So any ideas? Also I'm sorry if my explanation was horrid.
 
Technology news on Phys.org
If time and T are integers, you could use (((time*2)/T)&1), which will return 0 or 1 depending on the interval.
 
They aren't int values
 
For float or double, you can use fmod((time * 2.0) / T, 2.0) and check if the remainder is < 1. or >= 1.0.
Include math.h in order to use fmod().
 
Thread 'Is this public key encryption?'
I've tried to intuit public key encryption but never quite managed. But this seems to wrap it up in a bow. This seems to be a very elegant way of transmitting a message publicly that only the sender and receiver can decipher. Is this how PKE works? No, it cant be. In the above case, the requester knows the target's "secret" key - because they have his ID, and therefore knows his birthdate.
I tried a web search "the loss of programming ", and found an article saying that all aspects of writing, developing, and testing software programs will one day all be handled through artificial intelligence. One must wonder then, who is responsible. WHO is responsible for any problems, bugs, deficiencies, or whatever malfunctions which the programs make their users endure? Things may work wrong however the "wrong" happens. AI needs to fix the problems for the users. Any way to...
Back
Top