answersLogoWhite

0

no difference that's the difference

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Open loop and close loop system in injection moluld machine?

loop checking is perform before cable termination..the difference between a close loop and open loop is,tha close loop has a feedback while the open loop has not.


Is a while loop or a for loop faster?

No difference.


What is the definition of open loop process control?

it is when a control loop is open and processing


Is voltage stablizer open loop or close loop?

Closed


What is difference between entry controlled and exit controlled loops?

An entry control loop places the conditional expression that terminates the loop at the start of the loop, where it is evaluated before each iteration of the loop. If the expression initially evaluates false, then the loop does not iterate at all and control passes to the next statement following the loop. An exit control loop places the conditional expression at the end of the loop, where it is evaluated after each iteration of the loop. This means that the loop always iterates at least once. Generally, exit control loops are best avoided as conditional expressions are ideally placed up front where they can be seen. This helps make code easier to read and thus easier to maintain. However, there will inevitably be cases where an exit control loop helps to express the logic more clearly. In C there are 3 ways to define a structured iterative loop, using the for, while and do-while statements. Although for and while loops are entry control loops and do-while is an exit control loop, conditional expressions may also be placed anywhere in the body of the loop itself, thus it is possible for a loop to be both entry control and exit control. However, to aid readability and maintainability, it is best to place the conditional expression up front whenever possible.


Is the gain same for the same system in open loop and close loop?

no.


A countdown loop operates by the loop control variable?

decremented


What is sensitivity of open loop control system?

The sensitivity of an open loop control system is always 1, it is due to no feedback involved in open loop.


Is automobile cruise control open or closed loop?

A cruise control is an example of a closed loop servo.


What is an open loop in control systems?

A: By definition there is no control on a system in an open loop situation. simply . it has no feedback


Difference between loop and array?

A loop usually referred to the program flow control with possible repetition of executing the same codes, an array is an abstraction of fixed size container. 2 different concepts.


What type of loop can either increment or decrement the loop control variables value?

Counting Loop