answersLogoWhite

0

It can cause abnormal program termination or invalid results.

User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Engineering

When is minimum mean square error algorithm used?

This type of algorithm is commonly used in n dimensional clustering applications. This mean is commonly the simplest to use and a typical algorithm employing the minimum square error algorithm can be found in McQueen 1967.


What type of error in an algorithm will produce unexpected results depending on the number that the user inputs?

Algorithms do not accept user input; they are not computer programs. All input to an algorithm is specified at the start of the algorithm along with any required preconditions and postconditions. If a required precondition is not specified or is specified incorrectly, then this could result in unexpected results (or undefined behaviour in programming terminology). The type of error in the algorithm is simply that the precondition was not specified.


What are the different types of routing algorithms?

1.robust 2.correct 3.optimal 4.error free 5.reliable


What is sub-algorithm?

It is an algorithm used by another algorithm as part of the second algorithm's operation.As an example, an algorithm for finding the median value in a list of numbers might include sorting the numbers as a sub-algorithm: There are plenty of algorithms for sorting, and the specifics of the sorting does not matter to the "median value" algorithm, only that the numbers are sorted when the sub-algorithm is done.For what an algorithm is, see related link.


What is bresanham algorithm?

If you're wondering about the "Bresenham line algorithm", it is an algorithm (a process used for making a desired result) that plots a geometrical line (consiting of infinate points, as if you draw a straight line on a piece of paper) and translates it to a computer screen (composed of pixels, or video "points" that have a specific amount of sized points) The algorithm is as follows: function line(x0, x1, y0, y1)boolean steep := abs(y1 - y0) > abs(x1 - x0)if steep thenswap(x0, y0)swap(x1, y1)if x0 > x1 thenswap(x0, x1)swap(y0, y1)int deltax := x1 - x0int deltay := abs(y1 - y0)int error := -(deltax + 1) / 2int ystepint y := y0if y0 < y1 then ystep := 1 else ystep := -1for x from x0 to x1if steep then plot(y,x) else plot(x,y)error := error + deltayif error &ge; 0 theny := y + ysteperror := error - deltax This algorithm was taken from the site http://en.wikipedia.org/wiki/Bresenham's_line_algorithm

Related Questions

What is structure of maem?

&quot;MAEM&quot; is likely referring to the MEEG algorithm Error Message Format (MAEM). It is a data structure used in error reporting for algorithm-related error messages in the MEEG algorithm. The structure of MAEM typically consists of error codes, descriptions, and other relevant information to help users identify and troubleshoot issues with the algorithm.


When is minimum mean square error algorithm used?

This type of algorithm is commonly used in n dimensional clustering applications. This mean is commonly the simplest to use and a typical algorithm employing the minimum square error algorithm can be found in McQueen 1967.


What is a logical error?

One of your drives has an error (known or unknown)


What is a set of logical and mathematical operations performed in a specific sequence called?

algorithm


Which of these is an error in reasoning?

a logical fallacy


What is a logical drive error?

One of your drives has an error (known or unknown)


Logical arithmetical or computational procedure that if correctly applied ensures the solution of a problem?

algorithm


What contains specific rules and words that express logical steps of algorithm?

programming language


What contains specific rules and words that express the logical step of an algorithm?

programming language


What is difference between syntx error and logical error?

A syntax error is when you break the grammar rules of the language, such as forgetting to terminate a C++ statement with a semi-colon. A logical error is when your code does not perform as expected, typically due to an assumption that proves to be incorrect.


What is an algerithm?

I think you mean Algorithm....which is a logical arithmetical procedure, that if correctly applied, ensures the solution of a problem.


What are disadvantage of algorithm?

Advantages of an Algorithm: Effective Communication: Since the algorithm is written in English like language, it is simple to understand the step-by-step solutions of the problems. Easy Debugging: Well-designed algorithm makes debugging easy so that we can identify a logical error in the program. Easy and Efficient Coding: An algorithm acts as a blueprint of a program and helps during program development. Independent of Programming Language: An algorithm is independent of programming languages and can be easily coded using any high-level language. Disadvantages of an Algorithm: Developing algorithms for complex problems would be time-consuming and difficult to understand. Understanding complex logic through algorithms can be very difficult.